"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import HeroBillboardMetrics from '@/components/sections/hero/HeroBillboardMetrics'; import TagAbout from '@/components/sections/about/TagAbout'; import FeatureCardFifteen from '@/components/sections/feature/FeatureCardFifteen'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import TestimonialCardEleven from '@/components/sections/testimonial/TestimonialCardEleven'; import FaqBase from '@/components/sections/faq/FaqBase'; import ContactInline from '@/components/sections/contact/ContactInline'; import FooterBase from '@/components/sections/footer/FooterBase'; import { Zap, CheckCircle, Sparkles, Award, Crown } from "lucide-react"; export default function LandingPage() { const scrollToSection = (sectionId: string) => { const element = document.getElementById(sectionId); if (element) { element.scrollIntoView({ behavior: 'smooth' }); } }; return (
scrollToSection('products') }, { text: "Learn More", href: "about", onClick: () => scrollToSection('about') } ]} imageSrc="https://img.b2bpic.net/free-photo/traditional-italian-dessert-tiramisu-glasses-top-view_114579-9837.jpg" imageAlt="Edgetabs caffeine supplement strip packaging" frameStyle="card" metricsLabel="Trusted by professionals, fitness enthusiasts, and students worldwide" metrics={[ { id: "1", value: "50mg", label: "Caffeine Per Strip" }, { id: "2", value: "30mg", label: "L-Theanine for Smoothness" }, { id: "3", value: "0 Jitters", label: "Clean Energy Promise" } ]} />
scrollToSection('products') } ]} features={[ { id: "1", title: "Clean Caffeine Blend", description: "Premium 50mg caffeine combined with 30mg L-Theanine for smooth, sustained energy without the jitters", imageSrc: "https://img.b2bpic.net/free-photo/hand-taking-chocolate-candies-black_114579-37289.jpg", imageAlt: "Clean natural ingredients" }, { id: "2", title: "Rapid Absorption", description: "Fast-dissolving strips deliver caffeine directly through oral mucosa for quick energy onset in minutes", imageSrc: "https://img.b2bpic.net/free-photo/side-view-people-working-together_23-2149622859.jpg", imageAlt: "Professional using Edgetabs" }, { id: "3", title: "No Crash Formula", description: "L-Theanine stabilizes caffeine effects, eliminating anxiety spikes and energy crashes throughout your day", imageSrc: "https://img.b2bpic.net/free-photo/stressed-woman-office-using-laptop-talking-smartphone_23-2148908816.jpg", imageAlt: "Athlete maintaining energy" }, { id: "4", title: "Maximum Convenience", description: "Portable strips fit in your pocket—perfect for meetings, workouts, or study sessions on the go", imageSrc: "https://img.b2bpic.net/free-photo/flat-lay-nuts-milk-carton-arrangement_23-2149139375.jpg", imageAlt: "Edgetabs product packaging" } ]} speed={45} topMarqueeDirection="left" />
scrollToSection('products') }, { text: "Learn More", href: "features", onClick: () => scrollToSection('features') } ], features: [ "10 premium caffeine strips", "50mg caffeine + 30mg L-Theanine per strip", "Fast-dissolving formula", "30-day freshness guarantee", "Free shipping on orders over $25" ] }, { id: "pro", badge: "🏆 MOST POPULAR", badgeIcon: Crown, price: "$27.99", subtitle: "Ideal for daily energy consumers", buttons: [ { text: "Save 7%", href: "products", onClick: () => scrollToSection('products') }, { text: "Learn More", href: "features", onClick: () => scrollToSection('features') } ], features: [ "20 premium caffeine strips", "50mg caffeine + 30mg L-Theanine per strip", "Fast-dissolving formula", "30-day freshness guarantee", "Free shipping included", "Monthly energy tips via email" ] }, { id: "ultimate", badge: "Ultimate", badgeIcon: Zap, price: "$39.99", subtitle: "Maximum savings for committed users", buttons: [ { text: "Save 13%", href: "products", onClick: () => scrollToSection('products') }, { text: "Learn More", href: "features", onClick: () => scrollToSection('features') } ], features: [ "30 premium caffeine strips", "50mg caffeine + 30mg L-Theanine per strip", "Fast-dissolving formula", "30-day freshness guarantee", "Free priority shipping", "Monthly energy tips via email", "Exclusive early access to new flavors" ] } ]} />
); }