diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 00c3d0d..5ffa09c 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -10,6 +10,31 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function BlogPage() {
const { posts, isLoading } = useBlogPosts();
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Services", id: "/#features" },
+ { name: "About Us", id: "/#about" },
+ { name: "Testimonials", id: "/#testimonials" },
+ { name: "Contact", id: "/#contact" },
+ ];
+
+ const footerColumns = [
+ {
+ title: "Services", items: [
+ { label: "Roof Repair", href: "/#features" },
+ { label: "New Roofs", href: "/#features" },
+ { label: "Gutter Services", href: "/#features" },
+ ],
+ },
+ {
+ title: "Company", items: [
+ { label: "About Us", href: "/#about" },
+ { label: "Testimonials", href: "/#testimonials" },
+ { label: "Contact", href: "/#contact" },
+ ],
+ },
+ ];
+
return (
Loading posts...