diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 93d8890..0d7d026 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Neon Sign Builder - Custom Neon Design & Ordering", description: "Create custom neon signs with real-time preview, live pricing calculator, and instant WhatsApp ordering. Design your perfect neon in minutes.", keywords: "neon sign builder, custom neon, LED neon, sign designer, online neon builder, neon customizer, create neon signs", robots: { - index: true, - follow: true, - }, -}; + title: "Create Custom Neon Signs | NeonBuilder", description: "Design stunning custom neon signs with real-time preview, dynamic pricing, and instant WhatsApp ordering. Create your perfect neon in seconds."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}