diff --git a/src/app/page.tsx b/src/app/page.tsx index 3400212..f1f5e67 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Brain, Sparkles, Target, Zap, MessageSquare, CreditCard, HelpCircle, Mail, Activity, Shield, Clock } from "lucide-react"; +import { Target, Activity, Shield, Zap } from "lucide-react"; export default function PathlyPage() { const navItems = [ @@ -21,21 +21,18 @@ export default function PathlyPage() { ]; const testimonials = [ - { id: "1", name: "Alex Rivers", role: "Freelance Designer", testimonial: "Pathly turned my vague goal of 'becoming a better designer' into a concrete roadmap. I'm finally consistent.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman_23-2149153833.jpg" }, - { id: "2", name: "Jamie Smith", role: "Fitness Enthusiast", testimonial: "The adaptive planning is magic. When I missed a week due to illness, it simply recalibrated my schedule.", imageSrc: "http://img.b2bpic.net/free-photo/sport-woman-use-towel_158595-3273.jpg" }, - { id: "3", name: "Morgan Lee", role: "Software Engineer", testimonial: "I love the daily streaks. It's the dopamine hit I need to keep grinding on my side projects.", imageSrc: "http://img.b2bpic.net/free-photo/development-agency-office-worker-analyzing-project-sales-fintech-startup-businessperson-sitting-desk-marketing-company-office-developing-financial-strategy-accounting-management_482257-40323.jpg" } + { id: "1", name: "Alex Rivers", role: "Freelance Designer", testimonial: "Pathly turned my vague goal into a concrete roadmap.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman_23-2149153833.jpg" }, + { id: "2", name: "Jamie Smith", role: "Fitness Enthusiast", testimonial: "The adaptive planning is magic.", imageSrc: "http://img.b2bpic.net/free-photo/sport-woman-use-towel_158595-3273.jpg" } ]; const pricingPlans = [ - { id: "free", tag: "Starter", price: "$0", period: "/mo", description: "Basic features for personal habit tracking.", button: { text: "Get Started" }, featuresTitle: "Everything included:", features: ["One personal goal", "Basic habit tracking", "Weekly AI insights"] }, - { id: "pro", tag: "Pro", price: "$12", period: "/mo", description: "Advanced features for deep focus and growth.", button: { text: "Go Pro" }, featuresTitle: "Everything in Starter, plus:", features: ["Unlimited goals", "Adaptive scheduling", "Gamified rewards", "Priority support"] }, - { id: "team", tag: "Team", price: "$49", period: "/mo", description: "Tools for collaborative team success.", button: { text: "Get Started" }, featuresTitle: "Everything in Pro, plus:", features: ["Collaboration tools", "Team streaks", "Shared goal boards", "Dedicated account manager"] } + { id: "free", tag: "Starter", price: "$0", period: "/mo", description: "Basic features.", button: { text: "Get Started" }, featuresTitle: "Everything included:", features: ["One personal goal", "Basic habit tracking"] }, + { id: "pro", tag: "Pro", price: "$12", period: "/mo", description: "Advanced features.", button: { text: "Go Pro" }, featuresTitle: "Everything in Starter, plus:", features: ["Unlimited goals", "Adaptive scheduling"] } ]; const faqs = [ - { id: "1", title: "How does the AI create goals?", content: "Pathly uses advanced LLMs to interpret your intent, breaking down vague aspirations into SMART steps mapped to your calendar." }, - { id: "2", title: "What if I fall behind?", content: "Don't worry! Pathly detects missed tasks and automatically shifts your timeline, keeping you focused on progress rather than perfection." }, - { id: "3", title: "Is my goal data private?", content: "Yes, we never share or sell your data. Your goals are encrypted, and you own every byte of your progress history." } + { id: "1", title: "How does the AI create goals?", content: "Pathly uses advanced LLMs to interpret your intent." }, + { id: "2", title: "What if I fall behind?", content: "Pathly automatically shifts your timeline." } ]; return ( @@ -61,27 +58,26 @@ export default function PathlyPage() { tag="Your AI Goal Companion" tagIcon={Target} title="Turn Ambitions Into Daily Reality" - description="Stop dreaming and start achieving. Pathly uses AI to turn your biggest goals into manageable daily actions that actually fit your life." + description="Stop dreaming and start achieving." onSubmit={(email) => console.log(email)} />
@@ -90,31 +86,35 @@ export default function PathlyPage() { testimonials={testimonials} animationType="slide-up" title="Changing Lives, Daily" - description="See how our users are turning their wildest ambitions into concrete results." + description="See how our users are turning their ambitions into concrete results." textboxLayout="default" + useInvertedBackground={false} />