diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 327df58..a5ea0cb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import "./styles/variables.css"; 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Projector & Sound System Rentals | Audio Pro - NCR", description: "Professional projector and sound system rental services across Faridabad, Noida, Delhi & NCR. High-quality AV equipment for corporate events, conferences & celebrations.", keywords: "projector rental, sound system rental, AV equipment, Faridabad, Noida, Delhi, NCR, event equipment", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Premium Projector & Sound System Rentals | Audio Pro", description: "Professional audio-visual equipment rental services across NCR region. 4K projectors, premium sound systems, and complete AV solutions for your events.", type: "website", siteName: "Audio Pro Rentals"}, - twitter: { - card: "summary_large_image", title: "Premium AV Equipment Rentals - Audio Pro", description: "High-quality projectors and sound systems for events across Faridabad, Noida, Delhi & NCR"}, -}; + title: "Audio Pro Rentals | Professional AV Equipment Rental Services NCR", description: "Premium projector and sound system rentals for corporate events, conferences, and celebrations across Faridabad, Noida, Delhi, and NCR."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}