diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02570e..8bf53b2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Sahasra Planners & Designers | Real Estate & Interior Design", description: "Premium real estate construction and interior design services in Andhra Pradesh. Elegant homes, smart spaces, and exceptional craftsmanship. 5-star rated.", keywords: "real estate, interior design, construction, bedroom design, wardrobe design, Andhra Pradesh, Joharapuram", openGraph: { - title: "Sahasra Planners & Designers", description: "Transform your vision into stunning living spaces with premium residential construction and elegant interior design.", siteName: "Sahasra Planners & Designers", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg", alt: "Sahasra - Premium Real Estate & Interior Design" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Sahasra Planners & Designers", description: "Premium real estate and interior design services", images: ["http://img.b2bpic.net/free-photo/modern-balconies-with-geometric-shapes-glass-reflections-contemporary-facade_169016-68993.jpg"] - } -}; + title: "Sahasra Planners & Designers", description: "Premium residential construction, interior design, and smart space-saving solutions in Andhra Pradesh"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}