diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e244dd3..e6fc54d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1428 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } 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 montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Aviato - Luxury Travel for High Net Worth Individuals", - description: "Curated luxury travel experiences for discerning travelers. Exclusive destinations, private access, and 24/7 concierge service from Aviato.", - keywords: "luxury travel, private travel, exclusive destinations, high net worth travel, concierge service", - openGraph: { - title: "Aviato - Luxury Travel Redefined", - description: "Experience unparalleled luxury with Aviato's curated travel experiences for discerning clients.", - type: "website", - siteName: "Aviato", - images: [ - { - url: "http://img.b2bpic.net/free-photo/private-luxury-jet-airport-terminal_657883-449.jpg", - alt: "luxury private yacht ocean sunset view", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Aviato - Luxury Travel Experiences", - description: "Curated journeys for the world's most discerning travelers.", - images: ["http://img.b2bpic.net/free-photo/private-luxury-jet-airport-terminal_657883-449.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Aviato - Luxury Travel Curated", description: "Experience unparalleled luxury travel with personalized itineraries and white-glove concierge service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -