8 Commits

Author SHA1 Message Date
4cb39cab76 Update src/app/page.tsx 2026-04-18 17:29:15 +00:00
730359966f Update src/app/page.tsx 2026-04-18 17:28:44 +00:00
be4e29b5da Update src/app/about/page.tsx 2026-04-18 17:28:43 +00:00
a55a30f79a Switch to version 25: modified src/app/page.tsx 2026-04-18 16:58:30 +00:00
999b961e6d Merge version_26 into main
Merge version_26 into main
2026-04-18 16:57:56 +00:00
ff34b377a1 Update src/app/page.tsx 2026-04-18 16:57:53 +00:00
86cd172114 Merge version_24 into main
Merge version_24 into main
2026-04-18 16:57:01 +00:00
4c9904700d Merge version_24 into main
Merge version_24 into main
2026-04-18 16:56:32 +00:00
2 changed files with 6 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ export default function AboutPage() {
logoText="Lackawanna Barber Shop"
columns={[
{ items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675", href: "tel:+19735381675" }] },
{ items: [{ label: "Services", href: "/#services" }, { label: "Team", href: "/#team" }, { label: "FAQs", href: "/#faq" }] }
{ items: [{ label: "Services", href: "/services" }, { label: "Team", href: "/team" }, { label: "FAQs", href: "/faq" }] }
]}
/>
</div>

View File

@@ -29,10 +29,10 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "About", id: "/about"},
{ name: "Services", id: "#services"},
{ name: "Team", id: "#team"},
{ name: "Testimonials", id: "#testimonials"},
{ name: "FAQ", id: "#faq"},
{ name: "Services", id: "/services"},
{ name: "Team", id: "/team"},
{ name: "Testimonials", id: "/testimonials"},
{ name: "FAQ", id: "/faq"},
{ name: "Contact", id: "/contact"},
]}
brandName="Lackawanna"
@@ -147,7 +147,7 @@ export default function LandingPage() {
logoText="Lackawanna Barber Shop"
columns={[
{ items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675", href: "/contact" }] },
{ items: [{ label: "Services", href: "/#services" }, { label: "Team", href: "/#team" }, { label: "FAQs", href: "/#faq" }] }
{ items: [{ label: "Services", href: "/services" }, { label: "Team", href: "/team" }, { label: "FAQs", href: "/faq" }] }
]}
/>
</div>