Фронт с макета
Some checks failed
CI / main (push) Has been cancelled

This commit is contained in:
Igor Rybakov
2026-03-06 23:02:58 +02:00
parent acd7ea0792
commit 6228624805
61 changed files with 3138 additions and 962 deletions

View File

@@ -1,8 +1,12 @@
import './global.css';
import { Header } from '@/components/Header/Header';
import { Footer } from '@/components/Footer/Footer';
import { CartProvider } from '@/components/CartProvider/CartProvider';
export const metadata = {
title: 'Welcome to web',
description: 'Generated by create-nx-workspace',
title: 'PAN-PROM | Промышленное оборудование из Европы',
description:
'Гидравлика, пневматика, АСУ, запасные части. Прямые поставки оригинальных комплектующих от ведущих европейских производителей.',
};
export default function RootLayout({
@@ -11,8 +15,14 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
<html lang="ru">
<body>
<CartProvider>
<Header />
<main>{children}</main>
<Footer />
</CartProvider>
</body>
</html>
);
}