Merge version_2 into main #1

Merged
bender merged 6 commits from version_2 into main 2026-03-26 17:56:44 +00:00
6 changed files with 184 additions and 118 deletions

32
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,32 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import ContactText from '@/components/sections/contact/ContactText';
export default function ContactPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Offerings", id: "/offerings" },
{ name: "Gallery", id: "/gallery" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Elysium Elite"
/>
<ContactText
text="Inquire for a private, confidential session."
background={{ variant: "gradient-bars" }}
className="pt-32"
/>
<FooterSimple columns={[]} bottomLeftText="© 2024 Elysium Elite." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}

34
src/app/gallery/page.tsx Normal file
View File

@@ -0,0 +1,34 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
export default function GalleryPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Offerings", id: "/offerings" },
{ name: "Gallery", id: "/gallery" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Elysium Elite"
/>
<MetricCardEleven
title="Portfolio Gallery"
description="A visual chronicle of our most distinguished projects."
animationType="scale-rotate"
metrics={[]}
className="pt-32"
/>
<FooterSimple columns={[]} bottomLeftText="© 2024 Elysium Elite." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,36 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function OfferingsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Offerings", id: "/offerings" },
{ name: "Gallery", id: "/gallery" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Elysium Elite"
/>
<FeatureCardSixteen
title="Our Exclusive Offerings"
description="Precision-crafted services for discerning leaders."
textboxLayout="split"
animationType="blur-reveal"
positiveCard={{ items: ["Strategic Foresight", "Brand Elevation", "Global Asset Management"] }}
negativeCard={{ items: ["Inefficient Processes", "Generic Positioning", "Unmanaged Risk"] }}
className="pt-32"
/>
<FooterSimple columns={[]} bottomLeftText="© 2024 Elysium Elite." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -23,21 +23,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "/"},
{
name: "About",
id: "about",
},
name: "Offerings", id: "/offerings"},
{
name: "Services",
id: "features",
},
name: "Gallery", id: "/gallery"},
{
name: "Contact",
id: "contact",
},
name: "Pricing", id: "/pricing"},
{
name: "Contact", id: "/contact"},
]}
brandName="Elysium Elite"
/>
@@ -46,41 +40,26 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardCarousel
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
title="Defining the Future of Prestige"
description="Where visionary business strategy meets timeless elegance, creating unparalleled value for the world's most discerning organizations."
buttons={[
{
text: "Inquire",
href: "#contact",
},
text: "Inquire", href: "/contact"},
]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-vector/abstract-polygonal-business-card-template_23-2148289520.jpg",
imageAlt: "luxury lifestyle editorial aesthetic",
},
imageSrc: "http://img.b2bpic.net/free-vector/abstract-polygonal-business-card-template_23-2148289520.jpg", imageAlt: "luxury lifestyle editorial aesthetic"},
{
imageSrc: "http://img.b2bpic.net/free-photo/roll-wallpaper-illuminated-by-artificial-light_122409-89.jpg",
imageAlt: "minimalist luxury architecture detail",
},
imageSrc: "http://img.b2bpic.net/free-photo/roll-wallpaper-illuminated-by-artificial-light_122409-89.jpg", imageAlt: "minimalist luxury architecture detail"},
{
imageSrc: "http://img.b2bpic.net/free-photo/teenager-light-movie-projector_23-2149377404.jpg",
imageAlt: "abstract gold and silk texture",
},
imageSrc: "http://img.b2bpic.net/free-photo/teenager-light-movie-projector_23-2149377404.jpg", imageAlt: "abstract gold and silk texture"},
{
imageSrc: "http://img.b2bpic.net/free-photo/relax-area-hotel_1150-10812.jpg",
imageAlt: "luxurious dark business office",
},
imageSrc: "http://img.b2bpic.net/free-photo/relax-area-hotel_1150-10812.jpg", imageAlt: "luxurious dark business office"},
{
imageSrc: "http://img.b2bpic.net/free-photo/sample-white-cotton-textile_1220-7596.jpg",
imageAlt: "elegant premium service concept",
},
imageSrc: "http://img.b2bpic.net/free-photo/sample-white-cotton-textile_1220-7596.jpg", imageAlt: "elegant premium service concept"},
{
imageSrc: "http://img.b2bpic.net/free-photo/goodlooking-young-woman-white-blouse-wide-black-pants-black-classic-high-heels-sitting-stairs-working-her-laptop_627829-9850.jpg",
imageAlt: "sophisticated business lifestyle shot",
},
imageSrc: "http://img.b2bpic.net/free-photo/goodlooking-young-woman-white-blouse-wide-black-pants-black-classic-high-heels-sitting-stairs-working-her-laptop_627829-9850.jpg", imageAlt: "sophisticated business lifestyle shot"},
]}
/>
</div>
@@ -92,19 +71,13 @@ export default function LandingPage() {
metrics={[
{
icon: Award,
label: "Years Established",
value: "25+",
},
label: "Years Established", value: "25+"},
{
icon: Shield,
label: "Client Retention",
value: "98%",
},
label: "Client Retention", value: "98%"},
{
icon: Star,
label: "Global Projects",
value: "500+",
},
label: "Global Projects", value: "500+"},
]}
metricsAnimation="blur-reveal"
/>
@@ -116,34 +89,16 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "s1",
label: "01",
title: "Strategic Consulting",
items: [
"Executive Advisory",
"Market Penetration",
"Scalable Growth",
],
id: "s1", label: "01", title: "Strategic Consulting", items: [
"Executive Advisory", "Market Penetration", "Scalable Growth"],
},
{
id: "s2",
label: "02",
title: "Brand Realization",
items: [
"Identity Crafting",
"Luxury Positioning",
"Digital Presence",
],
id: "s2", label: "02", title: "Brand Realization", items: [
"Identity Crafting", "Luxury Positioning", "Digital Presence"],
},
{
id: "s3",
label: "03",
title: "Capital Management",
items: [
"Portfolio Optimization",
"Risk Mitigation",
"Asset Stewardship",
],
id: "s3", label: "03", title: "Capital Management", items: [
"Portfolio Optimization", "Risk Mitigation", "Asset Stewardship"],
},
]}
title="Curated Services"
@@ -156,25 +111,13 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Alistair Sterling",
imageSrc: "http://img.b2bpic.net/free-photo/drawer-lighting-warm-led-profile-blue-fronts_169016-69064.jpg",
},
id: "1", name: "Alistair Sterling", imageSrc: "http://img.b2bpic.net/free-photo/drawer-lighting-warm-led-profile-blue-fronts_169016-69064.jpg"},
{
id: "2",
name: "Eleanor Vance",
imageSrc: "http://img.b2bpic.net/free-photo/confident-businesswoman-suit-holds-hands-crossed-chest-stands-power-pose-street_1258-123439.jpg",
},
id: "2", name: "Eleanor Vance", imageSrc: "http://img.b2bpic.net/free-photo/confident-businesswoman-suit-holds-hands-crossed-chest-stands-power-pose-street_1258-123439.jpg"},
{
id: "3",
name: "Julian Thorne",
imageSrc: "http://img.b2bpic.net/free-photo/two-focused-colleagues-watching-discussing-content-computer-monitor-holding-pen-mouse-talking-while-sitting-meeting-room-with-panoramic-window-business-communication-concept_74855-12034.jpg",
},
id: "3", name: "Julian Thorne", imageSrc: "http://img.b2bpic.net/free-photo/two-focused-colleagues-watching-discussing-content-computer-monitor-holding-pen-mouse-talking-while-sitting-meeting-room-with-panoramic-window-business-communication-concept_74855-12034.jpg"},
{
id: "4",
name: "Isabella Rossi",
imageSrc: "http://img.b2bpic.net/free-photo/open-drawer-linear-perspective-dark-interior_169016-69134.jpg",
},
id: "4", name: "Isabella Rossi", imageSrc: "http://img.b2bpic.net/free-photo/open-drawer-linear-perspective-dark-interior_169016-69134.jpg"},
]}
cardTitle="Client Voices"
cardAnimation="blur-reveal"
@@ -187,21 +130,14 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "f1",
title: "Is our consultation private?",
content: "Absolutely. All sessions are strictly confidential.",
},
id: "f1", title: "Is our consultation private?", content: "Absolutely. All sessions are strictly confidential."},
{
id: "f2",
title: "How do we begin?",
content: "Simply schedule an introductory call to discuss your objectives.",
},
id: "f2", title: "How do we begin?", content: "Simply schedule an introductory call to discuss your objectives."},
]}
ctaTitle="Request a Private Session"
ctaDescription="Our partners are available for discreet, comprehensive consultations."
ctaButton={{
text: "Schedule Session",
}}
text: "Schedule Session"}}
ctaIcon={Calendar}
title="Private Consultation"
description="Begin your journey with Elysium Elite."
@@ -212,29 +148,19 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Firm",
items: [
title: "Firm", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "/"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "/"},
],
},
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Consulting",
href: "#features",
},
label: "Offerings", href: "/offerings"},
{
label: "Advisory",
href: "#features",
},
label: "Pricing", href: "/pricing"},
],
},
]}
@@ -245,4 +171,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

38
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,38 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
export default function PricingPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Offerings", id: "/offerings" },
{ name: "Gallery", id: "/gallery" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Elysium Elite"
/>
<PricingCardThree
title="Premium Packages"
description="Select the level of luxury advisory that fits your vision."
animationType="blur-reveal"
textboxLayout="split"
plans={[
{ id: "p1", name: "Essential", price: "$5,000", features: ["Core Strategy", "Monthly Check-ins"], buttons: [{ text: "Get Started" }] },
{ id: "p2", name: "Executive", price: "$15,000", features: ["Deep Consulting", "Brand Strategy", "Risk Analysis"], buttons: [{ text: "Get Started" }] }
]}
className="pt-32"
/>
<FooterSimple columns={[]} bottomLeftText="© 2024 Elysium Elite." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f4ef;
--card: #dad6cd;
--foreground: #2a2928;
--primary-cta: #2a2928;
--background: #fbfbfb;
--card: #f0f0f0;
--foreground: #1a1a1a;
--primary-cta: #1a1a1a;
--primary-cta-text: #f5f4ef;
--secondary-cta: #ecebea;
--secondary-cta: #e0e0e0;
--secondary-cta-text: #2a2928;
--accent: #ffffff;
--background-accent: #c6b180;
--accent: #c5a059;
--background-accent: #f5f5f5;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);