-
@@ -69,42 +91,7 @@ export default function BlogPage() {
+ columns={footerColumns} />
diff --git a/src/app/franchise/page.tsx b/src/app/franchise/page.tsx
index c88b28e..c704499 100644
--- a/src/app/franchise/page.tsx
+++ b/src/app/franchise/page.tsx
@@ -9,6 +9,43 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function FranchisePage() {
const bookingUrl = "https://tinyurl.com/2kr8jy37";
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Services", id: "/services" },
+ { name: "Products", id: "/products" },
+ { name: "Prices", id: "/#pricing" },
+ { name: "Franchise", id: "/franchise" },
+ { name: "Blog", id: "/blog" },
+ { name: "Contact", id: "/#contact" },
+ ];
+
+ const footerColumns = [
+ {
+ title: "Services", items: [
+ { label: "Gents Hair", href: "/services" },
+ { label: "Ladies Cut", href: "/services" },
+ { label: "Beard Grooming", href: "/services" },
+ ],
+ },
+ {
+ title: "Company", items: [
+ { label: "About Us", href: "/#about" },
+ { label: "Contact", href: "/#contact" },
+ { label: "Book Now", href: bookingUrl },
+ { label: "Products", href: "/products" },
+ { label: "Blog", href: "/blog" },
+ { label: "Franchise", href: "/franchise" },
+ ],
+ },
+ {
+ title: "Social", items: [
+ { label: "Instagram", href: "https://www.instagram.com/docbarnet?igsh=MWMwdHBnamFibXc3Yw%3D%3D&utm_source=qr" },
+ { label: "Facebook", href: "#" },
+ { label: "Privacy Policy", href: "#" },
+ ],
+ },
+ ];
+
return (