8 Commits

Author SHA1 Message Date
c9cb81c9ff Merge version_4 into main
Merge version_4 into main
2026-02-13 16:49:43 +00:00
aa81157493 Update src/app/shop/page.tsx 2026-02-13 16:49:39 +00:00
5c11045bb8 Update src/app/shop/[id]/page.tsx 2026-02-13 16:49:38 +00:00
926ae3df07 Update src/app/page.tsx 2026-02-13 16:49:37 +00:00
abda07ad60 Update src/app/contact/page.tsx 2026-02-13 16:49:37 +00:00
baa886a513 Update src/app/blog/page.tsx 2026-02-13 16:49:36 +00:00
560f6b21af Update src/app/about/page.tsx 2026-02-13 16:49:35 +00:00
e280e28320 Merge version_3 into main
Merge version_3 into main
2026-02-13 16:43:14 +00:00
6 changed files with 20 additions and 31 deletions

View File

@@ -27,8 +27,8 @@ export default function AboutPage() {
brandName="AppFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" }
]}
button={{
text: "Download App", href: "#"

View File

@@ -29,9 +29,8 @@ export default function BlogPage() {
brandName="AppFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Pricing", id: "metrics" }
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" }
]}
button={{ text: "Download App", href: "#cta" }}
/>

View File

@@ -27,8 +27,8 @@ export default function ContactPage() {
brandName="AppFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" }
]}
button={{
text: "Download App", href: "#"

View File

@@ -8,7 +8,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Smartphone, Zap, Heart, TrendingUp, Mail, Brain } from 'lucide-react';
import { Smartphone, Zap, Heart, TrendingUp, Mail } from 'lucide-react';
export default function HomePage() {
return (
@@ -29,7 +29,6 @@ export default function HomePage() {
brandName="AppFlow"
navItems={[
{ name: "Features", id: "features" },
{ name: "Insights", id: "insights" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Pricing", id: "metrics" }
]}
@@ -83,27 +82,13 @@ export default function HomePage() {
{
id: 2,
tag: "Analytics", title: "Real-Time Analytics", subtitle: "Track your usage patterns instantly", description: "Get detailed insights into your app usage with beautiful, interactive charts and graphs. Monitor daily activity, discover trends, and optimize how you spend your time on the app.", imageSrc: "https://img.b2bpic.net/free-vector/task-management-app_23-2148639059.jpg"
}
]}
/>
</div>
<div id="insights" data-section="insights">
<FeatureCardNineteen
title="AI-Powered Insights & Forecasts"
description="Get intelligent predictions and actionable insights to make smarter decisions."
tag="Advanced Analytics"
tagIcon={Brain}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
},
{
id: 1,
id: 3,
tag: "Predictive", title: "Smart Forecasting", subtitle: "Predict trends before they happen", description: "Our advanced AI algorithms analyze your usage patterns and predict future trends with remarkable accuracy. Stay ahead of the curve with data-driven forecasts that help you plan better and optimize your digital life.", imageSrc: "https://img.b2bpic.net/free-vector/task-management-app_23-2148639059.jpg"
},
{
id: 2,
id: 4,
tag: "Intelligence", title: "Behavioral Insights", subtitle: "Understand your digital habits", description: "Discover deep insights into your behavior patterns with our intelligent analysis engine. Get personalized recommendations based on your unique usage profile and receive actionable suggestions to enhance productivity and wellbeing.", imageSrc: "https://img.b2bpic.net/free-vector/goals-habits-tracking-app-screens_23-2148660328.jpg?id=9925439"
}
]}

View File

@@ -86,7 +86,8 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="AppFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -126,7 +127,8 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="AppFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -173,7 +175,8 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="AppFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>

View File

@@ -36,7 +36,8 @@ export default function ShopPage() {
brandName="AppFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -75,7 +76,8 @@ export default function ShopPage() {
brandName="AppFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>