Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 59dfdb19d1 | |||
| de1c2f63d6 | |||
| ebdb4937ed | |||
| 2546fb2175 | |||
| aced823a41 | |||
| ee5f42ff1c | |||
| 9e62a21959 | |||
| d4ec6cf8c9 | |||
| 6294d1b241 | |||
| 1b1dcb6060 | |||
| 4a7a2cf822 | |||
| 4070af0bdd | |||
| c497bcee1c | |||
| 0b42fd8e47 |
@@ -1,11 +1,14 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", 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", description: "Premium social networking platform for discerning individuals"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -14,7 +17,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -25,6 +25,7 @@ import {
|
||||
Shield,
|
||||
Sparkles,
|
||||
Star,
|
||||
TrendingUp,
|
||||
Users,
|
||||
} from "lucide-react";
|
||||
|
||||
@@ -49,6 +50,7 @@ export default function LandingPage() {
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Community", id: "testimonials" },
|
||||
{ name: "Earnings", id: "earnings" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
@@ -215,6 +217,37 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="earnings" data-section="earnings">
|
||||
<MetricCardFourteen
|
||||
title="Unlock Your Earning Potential"
|
||||
tag="Revenue Opportunities"
|
||||
tagAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "15-30%", description:
|
||||
"Commission on premium membership referrals. Earn recurring revenue every month from members you bring to the platform."
|
||||
},
|
||||
{
|
||||
id: "2", value: "5-20%", description:
|
||||
"Revenue share from exclusive event partnerships. Host or sponsor curated gatherings and capture a percentage of ticket sales and sponsorships."
|
||||
},
|
||||
{
|
||||
id: "3", value: "10K-50K+", description:
|
||||
"Monthly earnings potential for top influencers. Build your personal brand within the community and monetize through premium content and exclusive experiences."
|
||||
},
|
||||
{
|
||||
id: "4", value: "Unlimited", description:
|
||||
"Affiliate partnership opportunities. Create sponsored content, brand collaborations, and luxury product placements tailored to our exclusive member base."
|
||||
},
|
||||
]}
|
||||
containerClassName="max-w-6xl mx-auto"
|
||||
tagClassName="text-sm font-semibold"
|
||||
titleClassName="text-3xl md:text-4xl font-bold"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardFourteen
|
||||
title="Join a global community of distinguished individuals who value authentic connection, refined experiences, and meaningful engagement."
|
||||
@@ -303,6 +336,10 @@ export default function LandingPage() {
|
||||
id: "6", title: "Are there events or networking opportunities beyond the platform?", content:
|
||||
"Yes! Luxuria members have access to exclusive events, curated networking experiences, and invitation-only gatherings in major cities worldwide. These in-person opportunities complement the digital platform and foster deeper connections within our community of distinguished individuals."
|
||||
},
|
||||
{
|
||||
id: "7", title: "How can I earn money on Luxuria?", content:
|
||||
"Members can monetize their presence through multiple channels: earn commissions by referring premium memberships, receive revenue share from exclusive event partnerships, build personal brand presence and monetize through premium content, and create sponsored collaborations with luxury brands. Top earners make $10K-50K+ monthly."
|
||||
},
|
||||
]}
|
||||
containerClassName="max-w-6xl mx-auto"
|
||||
textBoxTitleClassName="text-4xl md:text-5xl font-bold"
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--background: #f5f4ef;
|
||||
--card: #dad6cd;
|
||||
--foreground: #2a2928;
|
||||
--primary-cta: #2a2928;
|
||||
--primary-cta-text: #f5f4ef;
|
||||
--secondary-cta: #ecebea;
|
||||
--secondary-cta-text: #2a2928;
|
||||
--accent: #ffffff;
|
||||
--background-accent: #c6b180;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user