From 50209c9d677489c69653f2df5235875b3c4df0c8 Mon Sep 17 00:00:00 2001 From: mfoiani Date: Fri, 23 Jan 2026 00:15:22 -0500 Subject: fix layout on about page, fill blog with upcoming, update so build ready --- src/app/Footer.tsx | 2 +- src/app/Header.tsx | 5 ++--- src/app/Roadmap.tsx | 6 +++--- src/app/Testimonials.tsx | 11 +++++------ src/app/about/page.tsx | 44 ++++++++++++++++++++++++-------------------- src/app/blog/page.tsx | 30 ++++++++++++++++++++++++++++++ src/app/contact/page.tsx | 31 ------------------------------- src/components/Header.tsx | 5 ++--- 8 files changed, 67 insertions(+), 67 deletions(-) create mode 100644 src/app/blog/page.tsx delete mode 100644 src/app/contact/page.tsx (limited to 'src') diff --git a/src/app/Footer.tsx b/src/app/Footer.tsx index 4d0bd00..f0fb9b6 100644 --- a/src/app/Footer.tsx +++ b/src/app/Footer.tsx @@ -22,7 +22,7 @@ export default function Footer() { Blog - + Contact diff --git a/src/app/Header.tsx b/src/app/Header.tsx index dc9dac7..92c118c 100644 --- a/src/app/Header.tsx +++ b/src/app/Header.tsx @@ -16,7 +16,6 @@ export default function Header() { const navigation = [ { name: "About", href: "/about" }, { name: "Blog", href: "/blog" }, - { name: "Contact", href: "/contact" }, ]; const [mobileMenuOpen, setMobileMenuOpen] = useState(false); @@ -78,7 +77,7 @@ export default function Header() { Close menu