diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..60a47ab --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,169 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; +import { Activity, Heart, ShieldCheck, Sparkles, User } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+ +
+ +
+ + + + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 6242ac6..828d5ab 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,21 +33,23 @@ export default function LandingPage() { @@ -58,9 +60,9 @@ export default function LandingPage() { description="Your Trusted Partner in Women's Health. Delivering compassionate and expert obstetrician-gynecologist care in Lahore." buttons={[ { - text: "Book Appointment", href: "#contact"}, + text: "Book Appointment", href: "/#contact"}, { - text: "Learn More", href: "#about"}, + text: "Learn More", href: "/#about"}, ]} slides={[ { @@ -298,29 +300,31 @@ export default function LandingPage() { { title: "About Us", items: [ { - label: "Home", href: "#hero"}, + label: "Home", href: "/"}, { - label: "About Sarah's Clinic", href: "#about"}, + label: "About Sarah's Clinic", href: "/#about"}, { - label: "Our Team", href: "#team"}, + label: "Our Team", href: "/#team"}, + { + label: "Admin Panel", href: "/admin"}, ], }, { title: "Services", items: [ { - label: "Pregnancy Care", href: "#services"}, + label: "Pregnancy Care", href: "/#services"}, { - label: "Fertility Treatments", href: "#services"}, + label: "Fertility Treatments", href: "/#services"}, { - label: "Gynecological Services", href: "#services"}, + label: "Gynecological Services", href: "/#services"}, ], }, { title: "Contact", items: [ { - label: "Book Appointment", href: "#contact"}, + label: "Book Appointment", href: "/#contact"}, { - label: "Our Location", href: "#contact"}, + label: "Our Location", href: "/#contact"}, { label: "Call Us", href: "tel:+923214335773"}, ], @@ -340,4 +344,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..08ad649 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,164 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { Activity, Heart, ShieldCheck, Sparkles, User } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx new file mode 100644 index 0000000..1ab4cb1 --- /dev/null +++ b/src/app/team/page.tsx @@ -0,0 +1,118 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; +import { Activity, Heart, ShieldCheck, Sparkles, User } from "lucide-react"; + +export default function TeamPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}