3 Commits

Author SHA1 Message Date
e174d9c8c8 Update src/app/page.tsx 2026-03-05 00:34:15 +00:00
6325d2e703 Update src/app/page.tsx 2026-03-05 00:31:13 +00:00
2e005047a6 Update src/app/layout.tsx 2026-03-05 00:31:13 +00:00
2 changed files with 10 additions and 48 deletions

View File

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

View File

@@ -52,7 +52,7 @@ export default function LandingPage() {
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }, { 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" buttonClassName="px-6 py-2.5 rounded-full font-medium"
buttonTextClassName="font-semibold" buttonTextClassName="font-semibold"
/> />
@@ -67,7 +67,7 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "canvas-reveal" }} background={{ variant: "canvas-reveal" }}
buttons={[ buttons={[
{ text: "Join the Circle", href: "#contact" }, { text: "Start Your Membership", href: "#contact" },
{ text: "Learn More", href: "#about" }, { text: "Learn More", href: "#about" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -262,7 +262,7 @@ export default function LandingPage() {
showCard={true} showCard={true}
buttonAnimation="slide-up" buttonAnimation="slide-up"
containerClassName="max-w-6xl mx-auto" containerClassName="max-w-6xl mx-auto"
titleClassName="text-4xl md:text-5xl font-bold" textBoxTitleClassName="text-4xl md:text-5xl font-bold"
/> />
</div> </div>
@@ -305,7 +305,7 @@ export default function LandingPage() {
}, },
]} ]}
containerClassName="max-w-6xl mx-auto" 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" textBoxDescriptionClassName="text-lg text-foreground/70"
/> />
</div> </div>