diff --git a/src/app/page.tsx b/src/app/page.tsx
index 899a962..c4c9b1d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,17 +1,16 @@
"use client";
-import HeroSignup from "@/components/sections/hero/HeroSignup";
+import HeroSplit from "@/components/sections/hero/HeroSplit";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
-import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
-import AboutMetric from "@/components/sections/about/AboutMetric";
-import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
-import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
-import FaqSplitText from "@/components/sections/faq/FaqSplitText";
-import ContactText from "@/components/sections/contact/ContactText";
-import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
+import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
+import MediaAbout from "@/components/sections/about/MediaAbout";
+import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
+import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
+import FaqDouble from "@/components/sections/faq/FaqDouble";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { Target, Activity, Shield, Zap, User } from "lucide-react";
-import AvatarGroup from "@/components/shared/AvatarGroup";
+import { Target, Activity, Shield } from "lucide-react";
export default function PathlyPage() {
const navItems = [
@@ -22,13 +21,13 @@ export default function PathlyPage() {
];
const testimonials = [
- { 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" }
+ { id: "1", name: "Alex Rivers", role: "Freelance Designer", company: "Independent", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-businessman_23-2149153833.jpg" },
+ { id: "2", name: "Jamie Smith", role: "Fitness Enthusiast", company: "Personal", rating: 5, 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.", 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"] }
+ { id: "free", price: "$0", name: "Starter", buttons: [{ text: "Get Started" }], features: ["One personal goal", "Basic habit tracking"] },
+ { id: "pro", price: "$12", name: "Pro", buttons: [{ text: "Go Pro" }], features: ["Unlimited goals", "Adaptive scheduling"] }
];
const faqs = [
@@ -49,54 +48,60 @@ export default function PathlyPage() {
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
-
- console.log(email)}
- avatars={[
- { src: "http://img.b2bpic.net/free-photo/portrait-man-smiling_23-2148812604.jpg", alt: "User Profile" }
- ]}
- avatarText="Join the community"
- />
-
-
+
+
+
+
+
+
+
-
-
-
+
-
-
+
-
-
+
-
+
);
}
\ No newline at end of file