From 5d567fcd55b14c38860075986c8c824d30df719e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 01:26:15 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 96 ++++++++++++++++++++++--------------------- 1 file changed, 50 insertions(+), 46 deletions(-) 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 ( - {isLoading ? ( -
-

Loading posts...

-
- ) : ( -
- -
- )} - - + ) : ( +
+
+ )} + +
); -- 2.49.1 From f62b3a9a3ee5ea2719ef674f38bb026ea283ff6d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 01:26:16 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f238824..eaaa701 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,8 +28,8 @@ export default function LandingPage() {