diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0218ba5..fb42a87 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Custom Furniture Design Islamabad | Vantage Madera Casa", description: "Award-winning bespoke furniture designers in Islamabad. Custom sofas, dining sets, and artisan wood carving. 4.9/5 rating from 71 reviews. Free design consultation.", keywords: "custom furniture Islamabad, bespoke sofa design, artisan wood carving, furniture manufacturer Rawalpindi, Sage Outlet, handcrafted furniture", metadataBase: new URL("https://vantagemaderacasa.com"), - alternates: { - canonical: "https://vantagemaderacasa.com"}, - openGraph: { - title: "Vantage Madera Casa | Award-Winning Custom Furniture Designers", description: "Transform your home with our bespoke furniture. Premium craftsmanship, collaborative design, timely delivery. 4.9/5 Google rating.", url: "https://vantagemaderacasa.com", siteName: "Vantage Madera Casa", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/modern-sofa-living-room_1339-4062.jpg", alt: "Vantage Madera Casa - Custom Furniture Design"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Vantage Madera Casa | Custom Furniture Designers", description: "Bespoke furniture for your dream home. Professional designers, artisan craftsmanship, timely delivery.", images: ["http://img.b2bpic.net/free-photo/modern-sofa-living-room_1339-4062.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Vantage Madera Casa - Award-Winning Custom Furniture Design", description: "Custom furniture designers specializing in artisan-crafted pieces. Award-winning designs with Pakistani craftsmanship. Free consultation available."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}