diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 253e9f7..c63fdc5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,44 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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"; +import { ServiceWrapper } from "@/providers/ServiceWrapper"; +import { Tag } from "@/components/ui/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 openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luxeria | AI & Digital Solutions for Luxury Hospitality", - description: "Luxeria delivers AI-powered digital solutions exclusively for premium restaurants, salons, and hotels. Transform guest experiences, optimize operations, and drive revenue growth.", - keywords: "AI hospitality, luxury restaurant technology, salon management software, hotel digital solutions, AI personalization, revenue optimization", - metadataBase: new URL("https://luxeria.io"), - alternates: { - canonical: "https://luxeria.io", - }, - openGraph: { - title: "Luxeria | AI & Digital Agency for Luxury Hospitality", - description: "Transform your luxury brand with cutting-edge AI and digital solutions. Excellence redefined for premium restaurants, salons, and hotels.", - url: "https://luxeria.io", - siteName: "Luxeria", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/elegant-luxury-hotel-lobby-featuring-ai--1773069051024-bafb5705.png", - alt: "Luxeria AI Solutions for Luxury Hospitality", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Luxeria | AI Solutions for Luxury Hospitality", - description: "Transform your luxury brand with AI-powered digital innovation. Restaurants, Salons, Hotels.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/elegant-luxury-hotel-lobby-featuring-ai--1773069051024-bafb5705.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luxeria - AI-Powered Digital Solutions for Luxury Hospitality", description: + "Transform your luxury restaurant, salon, or hotel with Luxeria's cutting-edge AI and digital solutions designed exclusively for premium brands."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +