6 Commits

Author SHA1 Message Date
cd243fb13e Update src/app/page.tsx 2026-04-17 15:04:56 +00:00
72479f0c83 Merge version_3 into main
Merge version_3 into main
2026-04-17 15:03:53 +00:00
7f77231304 Update src/app/page.tsx 2026-04-17 15:03:50 +00:00
db46079e75 Merge version_2 into main
Merge version_2 into main
2026-04-17 15:03:06 +00:00
0af2ed686d Update src/app/page.tsx 2026-04-17 15:03:03 +00:00
690168aeb1 Merge version_1 into main
Merge version_1 into main
2026-04-17 15:02:00 +00:00

View File

@@ -9,7 +9,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
@@ -64,9 +64,9 @@ export default function LandingPage() {
useInvertedBackground={true}
animationType="blur-reveal"
features={[
{ title: "Immersive Feeds", description: "Stream content in a fully 3D, responsive digital environment tailored to you.", imageSrc: "http://img.b2bpic.net/free-photo/3d-telegram-paper-airplane-icon_23-2152009925.jpg", imageAlt: "Feed visualization" },
{ title: "Real-time Sync", description: "Connect instantly with friends worldwide using our high-latency free sync engine.", imageSrc: "http://img.b2bpic.net/free-photo/people-using-digital-devices-smart-technology-double-color-exposure-effect_53876-104899.jpg", imageAlt: "Video chat sync" },
{ title: "Smart Insights", description: "Get deep analytics on your impact and engagement with intuitive dashboards.", imageSrc: "http://img.b2bpic.net/free-photo/broker-looking-laptop-analyzing-stock-market-invest-trading-stocks-graph_169016-48828.jpg", imageAlt: "Data analytics" }
{ title: "Immersive Feeds", description: "Stream content in a fully 3D, responsive digital environment tailored to you.", button: { text: "Sign Up Now", href: "#contact" }, imageSrc: "http://img.b2bpic.net/free-photo/3d-telegram-paper-airplane-icon_23-2152009925.jpg", imageAlt: "Feed visualization" },
{ title: "Real-time Sync", description: "Connect instantly with friends worldwide using our high-latency free sync engine.", button: { text: "Sign Up Now", href: "#contact" }, imageSrc: "http://img.b2bpic.net/free-photo/people-using-digital-devices-smart-technology-double-color-exposure-effect_53876-104899.jpg", imageAlt: "Video chat sync" },
{ title: "Smart Insights", description: "Get deep analytics on your impact and engagement with intuitive dashboards.", button: { text: "Sign Up Now", href: "#contact" }, imageSrc: "http://img.b2bpic.net/free-photo/broker-looking-laptop-analyzing-stock-market-invest-trading-stocks-graph_169016-48828.jpg", imageAlt: "Data analytics" }
]}
title="Built for the Future"
description="Experience social media like never before with cutting-edge tools designed for genuine interaction."
@@ -116,17 +116,18 @@ export default function LandingPage() {
</div>
<div id="pricing" data-section="pricing">
<PricingCardFive
<PricingCardNine
animationType="scale-rotate"
textboxLayout="split"
useInvertedBackground={true}
plans={[
{ id: "basic", tag: "Free", price: "$0", period: "/mo", description: "The perfect starting point for personal discovery.", button: { text: "Start Now" }, featuresTitle: "Included", features: ["Standard feed access", "Basic messaging", "Profile customization"] },
{ id: "pro", tag: "Professional", price: "$15", period: "/mo", description: "Everything for power creators and professional users.", button: { text: "Upgrade Pro" }, featuresTitle: "Includes Basic, plus:", features: ["3D Feed access", "Priority interaction", "Analytics tools"] },
{ id: "enterprise", tag: "Enterprise", price: "$49", period: "/mo", description: "Custom scale and dedicated support for large communities.", button: { text: "Contact Sales" }, featuresTitle: "Includes Pro, plus:", features: ["Custom data API", "Dedicated support", "Advanced metrics"] }
]}
tag="Best Value for Creators"
title="Choose Your Nexus Access"
description="Premium access for those who want to build, create, and connect at scale."
plans={[
{ id: "basic", title: "Basic", price: "$0", period: "/mo", button: { text: "Start Now" }, features: ["Standard feed access", "Basic messaging", "Profile customization"] },
{ id: "pro", title: "Pro", price: "$15", period: "/mo", button: { text: "Upgrade Pro" }, features: ["3D Feed access", "Priority interaction", "Analytics tools", "Exclusive Creator Badges"] },
{ id: "enterprise", title: "Enterprise", price: "$49", period: "/mo", button: { text: "Contact Sales" }, features: ["Custom data API", "Dedicated support", "Advanced metrics"] }
]}
/>
</div>