Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bcb0d59cc3 | |||
| b5f539f1da | |||
| 9ce4b4aa1d | |||
| bd216a83d6 |
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
||||
@@ -14,6 +14,13 @@ 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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -85,6 +92,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
animationType="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More", onClick: () => 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"
|
||||
@@ -254,7 +266,7 @@ export default function LandingPage() {
|
||||
text="Ready to experience clean energy without the crash?"
|
||||
animationType="entrance-slide"
|
||||
inputPlaceholder="Enter your email for exclusive deals"
|
||||
buttonText="Join Our Energy Community"
|
||||
buttonText="Join Community"
|
||||
useInvertedBackground="invertCard"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user