|
|
|
|
@@ -1,20 +1,57 @@
|
|
|
|
|
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 inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
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"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
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."};
|
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1382,6 +1419,7 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|