Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-08 05:08:50 +00:00
2 changed files with 50 additions and 1474 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -18,9 +18,9 @@ export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Features", id: "#features" },
{ name: "Community", id: "#community" },
{ name: "Habits", id: "#habits" },
{ name: "Analytics", id: "#analytics" },
{ name: "Community", id: "#community" },
{ name: "Pricing", id: "#pricing" },
];
@@ -129,6 +129,46 @@ export default function HomePage() {
/>
</div>
<div id="community" data-section="community">
<TestimonialCardSixteen
title="Success Stories From Our Community"
description="Join thousands of users who have transformed their lives through consistent habit tracking, AI coaching, and community support"
tag="User Testimonials"
tagIcon={Heart}
tagAnimation="slide-up"
testimonials={[
{
id: "1", name: "Priya Sharma", role: "Product Manager", company: "Tech Innovations", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/professional-headshot-photo-of-a-success-1772944389445-964b43fb.png?_wi=1", imageAlt: "Priya Sharma"},
{
id: "2", name: "Jennifer Martinez", role: "Entrepreneur", company: "Growth Ventures", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/professional-headshot-photo-of-a-success-1772944390057-92052e63.png?_wi=1", imageAlt: "Jennifer Martinez"},
{
id: "3", name: "Rajesh Kumar", role: "Software Engineer", company: "Code Solutions", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/professional-headshot-photo-of-a-diverse-1772944391251-cb4d9843.png?_wi=1", imageAlt: "Rajesh Kumar"},
{
id: "4", name: "Amanda Wilson", role: "Wellness Coach", company: "Life Balance Co", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/professional-headshot-photo-of-a-success-1772944390604-208979ba.png?_wi=1", imageAlt: "Amanda Wilson"},
]}
kpiItems={[
{
value: "47,000+", label: "Total habits tracked successfully"},
{
value: "92%", label: "User satisfaction rate"},
{
value: "156", label: "Average day streak per user"},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{
text: "Join Our Community", href: "/signup"},
]}
buttonAnimation="slide-up"
/>
</div>
<div id="habits" data-section="habits">
<SplitAbout
title="Master Your Habits With Precision"
@@ -183,46 +223,6 @@ export default function HomePage() {
/>
</div>
<div id="community" data-section="community">
<TestimonialCardSixteen
title="Success Stories From Our Community"
description="Join thousands of users who have transformed their lives through consistent habit tracking, AI coaching, and community support"
tag="User Testimonials"
tagIcon={Heart}
tagAnimation="slide-up"
testimonials={[
{
id: "1", name: "Priya Sharma", role: "Product Manager", company: "Tech Innovations", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/professional-headshot-photo-of-a-success-1772944389445-964b43fb.png?_wi=1", imageAlt: "Priya Sharma"},
{
id: "2", name: "Jennifer Martinez", role: "Entrepreneur", company: "Growth Ventures", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/professional-headshot-photo-of-a-success-1772944390057-92052e63.png?_wi=1", imageAlt: "Jennifer Martinez"},
{
id: "3", name: "Rajesh Kumar", role: "Software Engineer", company: "Code Solutions", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/professional-headshot-photo-of-a-diverse-1772944391251-cb4d9843.png?_wi=1", imageAlt: "Rajesh Kumar"},
{
id: "4", name: "Amanda Wilson", role: "Wellness Coach", company: "Life Balance Co", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeDizwb1vKZ31rIOTi0QOeGvbb/professional-headshot-photo-of-a-success-1772944390604-208979ba.png?_wi=1", imageAlt: "Amanda Wilson"},
]}
kpiItems={[
{
value: "47,000+", label: "Total habits tracked successfully"},
{
value: "92%", label: "User satisfaction rate"},
{
value: "156", label: "Average day streak per user"},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{
text: "Join Our Community", href: "/signup"},
]}
buttonAnimation="slide-up"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Simple, Transparent Pricing"
@@ -331,4 +331,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}