diff --git a/src/app/layout.tsx b/src/app/layout.tsx index babb6c7..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Professional Beauty Equipment | BeautyMafia EU", description: "Advanced beauty clinic equipment and biohacking skincare devices for aesthetic professionals. EU certified, trusted by 500+ clinics. Shop premium beauty technology.", keywords: "beauty equipment, aesthetic clinic devices, professional skincare, biohacking devices, EU beauty technology", metadataBase: new URL("https://beautymafia.pl"), - alternates: { - canonical: "https://beautymafia.pl"}, - openGraph: { - title: "Professional Beauty Technology for Modern Clinics", description: "Discover advanced beauty equipment and biohacking devices trusted by leading European aesthetic professionals.", url: "https://beautymafia.pl", siteName: "BeautyMafia", type: "website"}, - twitter: { - card: "summary_large_image", title: "Professional Beauty Equipment | BeautyMafia", description: "Premium beauty clinic devices for aesthetic professionals across Europe"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +