diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d70b1f9..cf23ba1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luxury Tropical Landscapes | Aménagements Tropiks Inc", description: "Premium landscape design and installation for luxury homes. Bespoke tropical outdoor transformations by expert craftsmen. Request your custom quote today.", keywords: "luxury landscape design, tropical landscaping, premium outdoor design, landscape installation, luxury garden design", metadataBase: new URL("https://amenagementstropiks.com"), - alternates: { - canonical: "https://amenagementstropiks.com" - }, - openGraph: { - title: "Luxury Tropical Landscapes | Aménagements Tropiks Inc", description: "Transform your outdoor space into a premium sanctuary with expert luxury landscape design and installation.", url: "https://amenagementstropiks.com", siteName: "Aménagements Tropiks Inc", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Luxury Tropical Landscapes | Aménagements Tropiks Inc", description: "Premium landscape design and installation for discerning homeowners." - }, - robots: { - index: true, - follow: true - } -}; + title: "Aménagements Tropiks | Luxury Landscape Design", description: "Premium landscape design and installation services for luxury homes and commercial properties across the region."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -