From 382d151cff6b782dff0016ce2bdcf13af7852ccb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 21:25:55 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 329 ++++++++++++++++++++++------------------------- 1 file changed, 155 insertions(+), 174 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b310053..3379364 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,218 +1,199 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; -import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; -import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import ContactText from '@/components/sections/contact/ContactText'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { CreditCard, DollarSign, FileText, Home, HelpCircle, Lock, PiggyBank, Shield, Star, TrendingUp } from 'lucide-react'; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; +import TeamCardOne from "@/components/sections/team/TeamCardOne"; +import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { TrendingUp, Users, Shield, Zap, Quote } from "lucide-react"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "about" }, + { name: "Features", id: "features" }, + { name: "Team", id: "team" }, + { name: "Contact", id: "contact" }, +]; + +const metrics = [ + { icon: TrendingUp, label: "Secure Transactions", value: "10M+" }, + { icon: Users, label: "Active Users", value: "50K+" }, + { icon: Shield, label: "Bank-Grade Encryption", value: "256-bit" }, + { icon: Zap, label: "Offline Ready", value: "100%" }, +]; + +const teamMembers = [ + { + id: "1", name: "Alex Chen", role: "Lead Developer", imageSrc: "asset://team-member-1"}, + { + id: "2", name: "Sarah Johnson", role: "Security Expert", imageSrc: "asset://team-member-2"}, + { + id: "3", name: "Marcus Williams", role: "Product Manager", imageSrc: "asset://team-member-3"}, + { + id: "4", name: "Emma Rodriguez", role: "UX Designer", imageSrc: "asset://team-member-4"}, +]; + +const testimonials = [ + { + id: "1", name: "John Smith", handle: "@johnsmith", testimonial: + "HavenVault has completely transformed how I manage my finances. The encryption is top-notch and I love that it works offline.", rating: 5, + icon: Quote, + }, + { + id: "2", name: "Lisa Chen", handle: "@lisachen", testimonial: + "Finally, a financial app that prioritizes privacy. This is exactly what I was looking for.", rating: 5, + icon: Quote, + }, + { + id: "3", name: "Michael Brown", handle: "@mbrown", testimonial: + "The offline functionality is a game-changer. Perfect for managing my assets on the go without worrying about connectivity.", rating: 5, + icon: Quote, + }, +]; + +const footerColumns = [ + { + items: [ + { label: "Home", href: "/" }, + { label: "Features", href: "features" }, + { label: "About", href: "about" }, + ], + }, + { + items: [ + { label: "Security", href: "#" }, + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ], + }, + { + items: [ + { label: "Contact", href: "contact" }, + { label: "Support", href: "#" }, + { label: "Blog", href: "#" }, + ], + }, +]; + +export default function Home() { return ( - +
-
-
-
-
- +
- -
- -
-
- console.log(email)} />
); -- 2.49.1