Update src/app/page.tsx
This commit is contained in:
@@ -3,20 +3,16 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import { useState } from "react";
|
||||
import { AlertCircle, CheckCircle, Brain, Target, Settings, BarChart } from "lucide-react";
|
||||
import { Brain, Settings } from "lucide-react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
|
||||
export default function LandingPage() {
|
||||
const [paymentStatus, setPaymentStatus] = useState("Active");
|
||||
const [paymentStatus] = useState("Active");
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -84,15 +80,15 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSeven animationType="slide-up" textboxLayout="split" title="Intelligent Signal Engine" description="Powerful technical analysis features designed to provide clear, actionable insights." features={[{ title: "Multi-Timeframe AI", description: "Select your preferred timeframe from 1m to 4h.", imageSrc: "http://img.b2bpic.net/free-photo/birth-rate-fertility-concept_23-2148761042.jpg?_wi=1" }, { title: "Broker-Optimized Execution", description: "Select your broker platform to ensure precision.", imageSrc: "http://img.b2bpic.net/free-photo/cybersecurity-concept-shield-protecting-data_23-2152001124.jpg" }]} />
|
||||
<FeatureCardSeven animationType="slide-up" textboxLayout="split" title="Intelligent Signal Engine" description="Powerful technical analysis features designed to provide clear, actionable insights." features={[{ title: "Multi-Timeframe AI", description: "Select your preferred timeframe from 1m to 4h.", imageSrc: "http://img.b2bpic.net/free-photo/birth-rate-fertility-concept_23-2148761042.jpg?_wi=1" }, { title: "Broker-Optimized Execution", description: "Select your broker platform to ensure precision.", imageSrc: "http://img.b2bpic.net/free-photo/cybersecurity-concept-shield-protecting-data_23-2152001124.jpg" }]} useInvertedBackground={false} />
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardNine animationType="slide-up" textboxLayout="split" title="Choose Your Path" description="Upgrade to increase signal limits." plans={[{ id: "free", title: "Free", price: "KSH 0", period: "Daily", features: ["2 Signals"], button: { text: "Start" } }]} />
|
||||
<PricingCardNine animationType="slide-up" textboxLayout="split" title="Choose Your Path" description="Upgrade to increase signal limits." plans={[{ id: "free", title: "Free", price: "KSH 0", period: "Daily", features: ["2 Signals"], button: { text: "Start" } }]} useInvertedBackground={false} />
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm title="Contact Support" description="Get in touch." inputs={[{ name: "name", type: "text", placeholder: "Name" }, { name: "email", type: "email", placeholder: "Email" }]} />
|
||||
<ContactSplitForm title="Contact Support" description="Get in touch." inputs={[{ name: "name", type: "text", placeholder: "Name" }, { name: "email", type: "email", placeholder: "Email" }]} useInvertedBackground={false} />
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
|
||||
Reference in New Issue
Block a user