From d54f18c1e287d2c9cd14efee7cd78042933f424f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:42:02 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 578 ++++++++++++++--------------------------------- 1 file changed, 169 insertions(+), 409 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7872061..9fc76a2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,432 +1,192 @@ "use client"; -import Link from "next/link"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; -import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; -import MediaAbout from "@/components/sections/about/MediaAbout"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; -import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { - Leaf, - Award, - Clock, - Users, - Heart, - Stethoscope, - Pill, - CheckCircle, - Star, - Calendar, - Package, -} from "lucide-react"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import SplitAbout from "@/components/sections/about/SplitAbout"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import TimelineProcessFlow from "@/components/cardStack/layouts/timelines/TimelineProcessFlow"; +import Image from "next/image"; +import { ArrowRight, Lightbulb, Zap } from "lucide-react"; +import ReactLenis from "lenis/react"; -export default function HomePage() { +export default function Home() { const navItems = [ { name: "Home", id: "/" }, - { name: "About Doctor", id: "/about" }, - { name: "Treatments", id: "/treatments" }, - { name: "Reviews", id: "/testimonials" }, - { name: "Gallery", id: "/gallery" }, - { name: "Contact", id: "/contact" }, - ]; - - const footerColumns = [ - { - title: "Services", - items: [ - { label: "Hair Loss Treatment", href: "/treatments/hair-loss" }, - { label: "Skin Disease Treatment", href: "/treatments/skin-disease" }, - { label: "Allergy Treatment", href: "/treatments/allergies" }, - { label: "Migraine Treatment", href: "/treatments/migraine" }, - ], - }, - { - title: "Company", - items: [ - { label: "About Doctor", href: "/about" }, - { label: "Our Clinic", href: "/contact" }, - { label: "Contact Us", href: "/contact" }, - { label: "Privacy Policy", href: "#" }, - ], - }, - { - title: "Contact", - items: [ - { label: "Phone: +91-9876-543-210", href: "tel:+919876543210" }, - { - label: "Email: contact@drgokalgandhi.com", - href: "mailto:contact@drgokalgandhi.com", - }, - { label: "WhatsApp Chat", href: "https://wa.me/919876543210" }, - { label: "Location: Dahisar West, Mumbai", href: "#" }, - ], - }, + { name: "About", id: "#about" }, + { name: "Features", id: "#features" }, + { name: "Contact", id: "#contact" }, ]; return ( - -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- -
- -
- -
- -
- - +
+ + Selection +
+ ), + content: ( + <> +

Source Selection

+

+ We carefully select the finest natural ingredients +

+ + + ), + }, + { + id: "2", reverse: true, + media: ( +
+ Testing +
+ ), + content: ( + <> +

Laboratory Testing

+

+ Every batch undergoes rigorous testing +

+ + + ), + }, + { + id: "3", reverse: false, + media: ( +
+ Production +
+ ), + content: ( + <> +

Careful Production

+

+ Precision manufacturing ensures consistency +

+ + + ), + }, + ]} + /> + +
); -} \ No newline at end of file +}