7 Commits

Author SHA1 Message Date
6416faed03 Merge version_4 into main
Merge version_4 into main
2026-05-26 05:29:53 +00:00
34124f4adb Update src/app/book-appointment/page.tsx 2026-05-26 05:29:50 +00:00
c777c5013d Update src/app/admin/page.tsx 2026-05-26 05:29:49 +00:00
1703e23697 Update src/app/about/page.tsx 2026-05-26 05:29:49 +00:00
9c827d2d7b Merge version_3 into main
Merge version_3 into main
2026-05-26 05:18:32 +00:00
67148561e8 Merge version_3 into main
Merge version_3 into main
2026-05-26 05:17:43 +00:00
5196c84ee0 Merge version_3 into main
Merge version_3 into main
2026-05-26 05:17:05 +00:00
3 changed files with 104 additions and 107 deletions

View File

@@ -8,10 +8,14 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
const NAV_ITEMS = [ const NAV_ITEMS = [
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "About", id: "/about" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Team", id: "/team" }, { name: "Team", id: "/team" },
{ name: "Testimonials", id: "/testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/contact" }, { name: "FAQs", id: "/#faq" },
{ name: "Blog", id: "/#blog" },
{ name: "Instagram", id: "/#instagram-feed" },
{ name: "Book Appointment", id: "/book-appointment" },
{ name: "Admin", id: "/admin" } { name: "Admin", id: "/admin" }
]; ];
@@ -33,8 +37,8 @@ const FOOTER_COLUMNS = [
}, },
{ {
title: "Contact", items: [ title: "Contact", items: [
{ label: "Book Appointment", href: "/contact" }, { label: "Book Appointment", href: "/book-appointment" },
{ label: "Our Location", href: "/contact" }, { label: "Our Location", href: "/#contact" },
{ label: "Call Us", href: "tel:+923214335773" }, { label: "Call Us", href: "tel:+923214335773" },
], ],
}, },
@@ -66,7 +70,7 @@ export default function AboutPage() {
navItems={NAV_ITEMS} navItems={NAV_ITEMS}
brandName="Sarah's Clinic" brandName="Sarah's Clinic"
button={{ button={{
text: "Book Appointment", href: "/contact" text: "Book Appointment", href: "/book-appointment"
}} }}
animateOnLoad={true} animateOnLoad={true}
/> />

View File

@@ -6,6 +6,50 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import BlogCardOne from '@/components/sections/blog/BlogCardOne'; import BlogCardOne from '@/components/sections/blog/BlogCardOne';
const NAV_ITEMS = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Team", id: "/team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQs", id: "/#faq" },
{ name: "Blog", id: "/#blog" },
{ name: "Instagram", id: "/#instagram-feed" },
{ name: "Book Appointment", id: "/book-appointment" },
{ name: "Admin", id: "/admin" }
];
const FOOTER_COLUMNS = [
{
title: "About Us", items: [
{ label: "Home", href: "/" },
{ label: "About Sarah's Clinic", href: "/about" },
{ label: "Our Team", href: "/team" },
{ label: "Admin Panel", href: "/admin" },
],
},
{
title: "Services", items: [
{ label: "Pregnancy Care", href: "/services" },
{ label: "Fertility Treatments", href: "/services" },
{ label: "Gynecological Services", href: "/services" },
],
},
{
title: "Contact", items: [
{ label: "Book Appointment", href: "/book-appointment" },
{ label: "Our Location", href: "/#contact" },
{ label: "Call Us", href: "tel:+923214335773" },
],
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://www.instagram.com/dr_sarah_masood/" },
{ label: "Facebook", href: "https://www.facebook.com/drsarahmasoodconsultantgynaecologist" },
],
},
];
export default function AdminPage() { export default function AdminPage() {
return ( return (
<ThemeProvider <ThemeProvider
@@ -23,15 +67,7 @@ export default function AdminPage() {
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={NAV_ITEMS}
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#services" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Admin", id: "/admin" },
]}
brandName="Sarah's Clinic - Admin" brandName="Sarah's Clinic - Admin"
button={{ text: "Logout", href: "/" }} button={{ text: "Logout", href: "/" }}
animateOnLoad={true} animateOnLoad={true}
@@ -74,40 +110,11 @@ export default function AdminPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseReveal
logoText="Sarah's Clinic" logoText="Sarah's Clinic"
columns={[ columns={FOOTER_COLUMNS}
{
title: "About Us", items: [
{ label: "Home", href: "/" },
{ label: "About Sarah's Clinic", href: "/#about" },
{ label: "Our Team", href: "/#team" },
{ label: "Admin Panel", href: "/admin" },
],
},
{
title: "Services", items: [
{ label: "Pregnancy Care", href: "/#services" },
{ label: "Fertility Treatments", href: "/#services" },
{ label: "Gynecological Services", href: "/#services" },
],
},
{
title: "Contact", items: [
{ label: "Book Appointment", href: "/#contact" },
{ label: "Our Location", href: "/#contact" },
{ label: "Call Us", href: "tel:+923214335773" },
],
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://www.instagram.com/dr_sarah_masood/" },
{ label: "Facebook", href: "https://www.facebook.com/drsarahmasoodconsultantgynaecologist" },
],
},
]}
copyrightText="© 2024 Sarah's Clinic. All rights reserved." copyrightText="© 2024 Sarah's Clinic. All rights reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -6,6 +6,50 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
const NAV_ITEMS = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Team", id: "/team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQs", id: "/#faq" },
{ name: "Blog", id: "/#blog" },
{ name: "Instagram", id: "/#instagram-feed" },
{ name: "Book Appointment", id: "/book-appointment" },
{ name: "Admin", id: "/admin" }
];
const FOOTER_COLUMNS = [
{
title: "About Us", items: [
{ label: "Home", href: "/" },
{ label: "About Sarah's Clinic", href: "/about" },
{ label: "Our Team", href: "/team" },
{ label: "Admin Panel", href: "/admin" },
],
},
{
title: "Services", items: [
{ label: "Pregnancy Care", href: "/services" },
{ label: "Fertility Treatments", href: "/services" },
{ label: "Gynecological Services", href: "/services" },
],
},
{
title: "Contact", items: [
{ label: "Book Appointment", href: "/book-appointment" },
{ label: "Our Location", href: "/#contact" },
{ label: "Call Us", href: "tel:+923214335773" },
],
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://www.instagram.com/dr_sarah_masood/" },
{ label: "Facebook", href: "https://www.facebook.com/drsarahmasoodconsultantgynaecologist" },
],
},
];
export default function AppointmentPage() { export default function AppointmentPage() {
// Placeholder for form submission logic // Placeholder for form submission logic
const handleAppointmentSubmit = (data: Record<string, string>) => { const handleAppointmentSubmit = (data: Record<string, string>) => {
@@ -31,24 +75,7 @@ export default function AppointmentPage() {
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={NAV_ITEMS}
{
name: "Home", id: "/"},
{
name: "About", id: "/#about"},
{
name: "Services", id: "/#services"},
{
name: "Team", id: "/#team"},
{
name: "Testimonials", id: "/#testimonials"},
{
name: "Book Appointment", id: "/book-appointment"},
{
name: "Contact", id: "/#contact"},
{
name: "Admin", id: "/admin"},
]}
brandName="Sarah's Clinic" brandName="Sarah's Clinic"
button={{ button={{
text: "Book Appointment", href: "/book-appointment"}} text: "Book Appointment", href: "/book-appointment"}}
@@ -94,52 +121,11 @@ export default function AppointmentPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseReveal
logoText="Sarah's Clinic" logoText="Sarah's Clinic"
columns={[ columns={FOOTER_COLUMNS}
{
title: "About Us", items: [
{
label: "Home", href: "/"},
{
label: "About Sarah's Clinic", href: "/#about"},
{
label: "Our Team", href: "/#team"},
{
label: "Admin Panel", href: "/admin"},
],
},
{
title: "Services", items: [
{
label: "Pregnancy Care", href: "/#services"},
{
label: "Fertility Treatments", href: "/#services"},
{
label: "Gynecological Services", href: "/#services"},
],
},
{
title: "Contact", items: [
{
label: "Book Appointment", href: "/book-appointment"},
{
label: "Our Location", href: "/#contact"},
{
label: "Call Us", href: "tel:+923214335773"},
],
},
{
title: "Connect", items: [
{
label: "Instagram", href: "https://www.instagram.com/dr_sarah_masood/"},
{
label: "Facebook", href: "https://www.facebook.com/drsarahmasoodconsultantgynaecologist"},
],
},
]}
copyrightText="© 2024 Sarah's Clinic. All rights reserved." copyrightText="© 2024 Sarah's Clinic. All rights reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }