diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a427954..a473751 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Luxuria | Exclusive Social Network for Affluent Professionals", description: "Join Luxuria, the premier social platform for high-net-worth individuals and affluent professionals. Connect authentically, share curated moments, and experience networking designed for refined taste with privacy-protected community standards.", keywords: "luxury social network, exclusive networking, high-net-worth community, affluent professionals, premium social platform, curated networking", metadataBase: new URL("https://luxuria.com"), - alternates: { - canonical: "https://luxuria.com"}, - openGraph: { - title: "Luxuria | Where Elegance Meets Exclusive Connection", description: "The premier social network for discerning individuals. Share curated moments, connect authentically, and experience networking designed for refined taste.", url: "https://luxuria.com", siteName: "Luxuria", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-psd/dynamic-technology-concept-landing-page_23-2150294640.jpg", alt: "Luxuria exclusive networking platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luxuria | Exclusive Social Network for Affluent Professionals", description: "Join the premier social network for high-net-worth individuals and luxury lifestyle enthusiasts.", images: ["http://img.b2bpic.net/free-psd/dynamic-technology-concept-landing-page_23-2150294640.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luxuria | Exclusive Premium Social Network", description: "Luxuria is the premier social network for discerning individuals. Share curated moments, connect authentically, and experience networking designed for refined taste."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}