diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3606b7b..599ef7a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,41 +1,32 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Towelly - Disposable Body Towels for Gyms, Beaches & Travel", description: "Stop carrying wet towels. Single-use disposable body towels for gyms, beaches, and travel. Dry, clean, and ready to go. First sales launch with simple pricing and consignment options."}; + title: 'Towelly - Disposable Body Towels', + description: 'Premium single-use disposable body towels for gyms, beaches, and travel.', +}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +