diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a495607..457c1bd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1413 +1,27 @@ 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: "Design Nails | Premium Nail Salon & Beauty Services", description: "Experience luxury nail care at Design Nails. Expert technicians, stunning designs, and premium services in an elegant sanctuary.", keywords: "nail salon, gel manicure, pedicure, nail art, nail design, beauty services", openGraph: { - title: "Design Nails - Premium Nail Salon", description: "Luxury nail care and custom designs by expert technicians", type: "website", siteName: "Design Nails"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Design Nails - Premium Nail Salon", description: "Experience luxury nail care at Design Nails. Premium services, expert technicians, and stunning designs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -