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 = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" }, { name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Team", id: "/team" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
{ 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" }
];
@@ -33,8 +37,8 @@ const FOOTER_COLUMNS = [
},
{
title: "Contact", items: [
{ label: "Book Appointment", href: "/contact" },
{ label: "Our Location", href: "/contact" },
{ label: "Book Appointment", href: "/book-appointment" },
{ label: "Our Location", href: "/#contact" },
{ label: "Call Us", href: "tel:+923214335773" },
],
},
@@ -66,7 +70,7 @@ export default function AboutPage() {
navItems={NAV_ITEMS}
brandName="Sarah's Clinic"
button={{
text: "Book Appointment", href: "/contact"
text: "Book Appointment", href: "/book-appointment"
}}
animateOnLoad={true}
/>

View File

@@ -6,6 +6,50 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
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() {
return (
<ThemeProvider
@@ -23,15 +67,7 @@ export default function AdminPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ 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" },
]}
navItems={NAV_ITEMS}
brandName="Sarah's Clinic - Admin"
button={{ text: "Logout", href: "/" }}
animateOnLoad={true}
@@ -74,40 +110,11 @@ export default function AdminPage() {
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Sarah's Clinic"
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" },
],
},
]}
columns={FOOTER_COLUMNS}
copyrightText="© 2024 Sarah's Clinic. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,6 +6,50 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
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() {
// Placeholder for form submission logic
const handleAppointmentSubmit = (data: Record<string, string>) => {
@@ -31,24 +75,7 @@ export default function AppointmentPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
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"},
]}
navItems={NAV_ITEMS}
brandName="Sarah's Clinic"
button={{
text: "Book Appointment", href: "/book-appointment"}}
@@ -94,52 +121,11 @@ export default function AppointmentPage() {
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Sarah's Clinic"
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"},
],
},
]}
columns={FOOTER_COLUMNS}
copyrightText="© 2024 Sarah's Clinic. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}