Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-20 18:47:28 +00:00

View File

@@ -6,7 +6,6 @@ import HeroCentered from "@/components/sections/hero/HeroCentered";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Award, Brain, Heart, Moon, Shield, Sparkles, Thermometer, Zap, User, TrendingDown, Users } from "lucide-react";
@@ -31,8 +30,7 @@ export default function LandingPage() {
navItems={[
{ name: "The Problem", id: "problem" },
{ name: "The Product", id: "product" },
{ name: "The Science", id: "science" },
{ name: "Testimonials", id: "testimonials" }
{ name: "The Science", id: "science" }
]}
button={{ text: "Join Waitlist", href: "#waitlist" }}
animateOnLoad={true}
@@ -160,39 +158,6 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Early Access. Exclusive Pricing."
description="Waitlist members receive pre-launch pricing, exclusive early access, and investor briefing materials. Whether you're an investor, journalist, or someone who refuses to live at the mercy of their emotions — this is your invitation."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
plans={[
{
id: "early-access", badge: "First 500", badgeIcon: Zap,
price: "Founding Price", subtitle: "Lifetime early access to UMA platform", buttons: [{ text: "Claim Spot", href: "#waitlist" }],
features: [
"Clinical-grade smart ring included", "SER® Method 63-day program", "AI personal agent full access", "Lifetime community access", "Founding member benefits", "Priority support"
]
},
{
id: "investor", badge: "Enterprise", badgeIcon: Award,
price: "Custom", subtitle: "Institutional partnerships & research licensing", buttons: [{ text: "Schedule Briefing", href: "#waitlist" }],
features: [
"White-label partnership options", "Clinical research collaboration", "Custom integration support", "Dedicated account management", "Data analytics platform", "API access"
]
},
{
id: "standard", badge: "Public Launch", badgeIcon: Sparkles,
price: "$2,999", subtitle: "Full UMA system at public launch", buttons: [{ text: "Pre-order", href: "#waitlist" }],
features: [
"Smart ring + comprehensive biometrics", "63-day SER® Method program", "AI personal agent with voice commands", "Monthly transformation insights", "Community access", "Standard support"
]
}
]}
/>
</div>
<div id="waitlist" data-section="waitlist">
<ContactCenter
tag="Get Started"
@@ -215,8 +180,7 @@ export default function LandingPage() {
title: "Product", items: [
{ label: "Smart Ring", href: "#product" },
{ label: "SER® Method", href: "#science" },
{ label: "AI Agent", href: "#product" },
{ label: "Pricing", href: "#pricing" }
{ label: "AI Agent", href: "#product" }
]
},
{
@@ -249,4 +213,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}