Merge version_2 into main #2
@@ -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)}
|
||||
/>
|
||||
<div id="features">
|
||||
<FeatureCardTwentyThree
|
||||
animationType="slide-up"
|
||||
title="Designed for Human Growth"
|
||||
description="Technology should help, not judge. Pathly adapts to your unique rhythm."
|
||||
description="Technology should help, not judge."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "1", title: "Smart Goal Setting", tags: ["AI-Powered", "Milestones"] },
|
||||
{ id: "2", title: "Adaptive Planning", tags: ["Auto-Adjusting", "Flexibility"] },
|
||||
{ id: "3", title: "Habit Integration", tags: ["Daily Tracking", "Consistency"] },
|
||||
{ id: "4", title: "Privacy First", tags: ["Encrypted", "Secure"] }
|
||||
{ id: "1", title: "Smart Goal Setting", tags: ["AI-Powered"] },
|
||||
{ id: "2", title: "Adaptive Planning", tags: ["Flexible"] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about">
|
||||
<AboutMetric
|
||||
title="Why Pathly Wins"
|
||||
metrics={[{ icon: Activity, label: "Goal Achievement", value: "2x Faster" }, { icon: Shield, label: "Retention Rate", value: "98%" }, { icon: Zap, label: "Task Completion", value: "10k+" }]}
|
||||
metrics={[{ icon: Activity, label: "Goal Achievement", value: "2x Faster" }, { icon: Shield, label: "Retention Rate", value: "98%" }]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
@@ -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}
|
||||
/>
|
||||
<div id="pricing">
|
||||
<PricingCardFive
|
||||
plans={pricingPlans}
|
||||
animationType="slide-up"
|
||||
title="Simple Plans for Everyone"
|
||||
description="Everything you need to succeed, without hidden barriers."
|
||||
title="Simple Plans"
|
||||
description="Everything you need to succeed."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="faq">
|
||||
<FaqSplitText
|
||||
faqs={faqs}
|
||||
sideTitle="Need Clarity?"
|
||||
sideDescription="Common questions about the Pathly methodology."
|
||||
sideDescription="Common questions."
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact">
|
||||
<ContactText
|
||||
text="Ready to reach your potential? Join Pathly today and start turning your goals into reality, one step at a time."
|
||||
text="Ready to reach your potential? Join Pathly today."
|
||||
buttons={[{ text: "Start for Free" }]}
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoReveal
|
||||
|
||||
Reference in New Issue
Block a user