diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9acad24..1726030 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "LacDeco.tapety - Салон обоев и красок в Минске", description: "Премиум обои и интерьерные краски от ведущих брендов. 3000+ оттенков, эксклюзивные коллекции, профессиональный сервис доставки и установки.", keywords: "обои, краски, интерьер, дизайн, Минск, премиум, Casamance, Swiss Lake", metadataBase: new URL("https://lacdeco-tapety.by"), - alternates: { - canonical: "https://lacdeco-tapety.by"}, - openGraph: { - title: "LacDeco.tapety - Премиум обои и краски", description: "Откройте для себя эксклюзивную коллекцию интерьерных материалов", url: "https://lacdeco-tapety.by", siteName: "LacDeco.tapety", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/modern-luxury-authentic-dining-room-interior-design-with-picture-frame_53876-129841.jpg", alt: "LacDeco.tapety премиум обои и краски"}, - ], - }, - twitter: { - card: "summary_large_image", title: "LacDeco.tapety", description: "Салон эксклюзивных обоев и красок", images: ["http://img.b2bpic.net/free-photo/modern-luxury-authentic-dining-room-interior-design-with-picture-frame_53876-129841.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "LacDeco.tapety - Салон эксклюзивных обоев и красок", description: "Премиум коллекция интерьерных материалов от ведущих мировых брендов"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}