Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e174d9c8c8 | |||
| 6325d2e703 | |||
| 2e005047a6 |
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ export default function LandingPage() {
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Join the Circle", href: "#hero" }}
|
||||
button={{ text: "Start Your Membership", href: "#hero" }}
|
||||
buttonClassName="px-6 py-2.5 rounded-full font-medium"
|
||||
buttonTextClassName="font-semibold"
|
||||
/>
|
||||
@@ -67,7 +67,7 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
buttons={[
|
||||
{ text: "Join the Circle", href: "#contact" },
|
||||
{ text: "Start Your Membership", href: "#contact" },
|
||||
{ text: "Learn More", href: "#about" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -262,7 +262,7 @@ export default function LandingPage() {
|
||||
showCard={true}
|
||||
buttonAnimation="slide-up"
|
||||
containerClassName="max-w-6xl mx-auto"
|
||||
titleClassName="text-4xl md:text-5xl font-bold"
|
||||
textBoxTitleClassName="text-4xl md:text-5xl font-bold"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -305,7 +305,7 @@ export default function LandingPage() {
|
||||
},
|
||||
]}
|
||||
containerClassName="max-w-6xl mx-auto"
|
||||
titleClassName="text-4xl md:text-5xl font-bold"
|
||||
textBoxTitleClassName="text-4xl md:text-5xl font-bold"
|
||||
textBoxDescriptionClassName="text-lg text-foreground/70"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user