diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 434898f..9a73931 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -65,6 +65,7 @@ export default function AboutPage() { imagePosition="right" textboxLayout="default" useInvertedBackground={true} + mediaAnimation="slide-up" className="py-16 md:py-24 lg:py-32" /> diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 54a6b6e..80c449a 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,11 +1,33 @@ "use client"; -import ReactLenis from "lenis/react"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import BlogCardThree from '@/components/sections/blog/BlogCardThree'; import { useBlogPosts } from "@/hooks/useBlogPosts"; +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Menu", id: "/menu" }, + { name: "Contact", id: "/contact" }, +]; + +const Footer = () => ( + +); + export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); @@ -22,43 +44,34 @@ export default function BlogPage() { secondaryButtonStyle="solid" headingFontWeight="semibold" > - - + + {isLoading ? ( +
+

Loading posts...

+
+ ) : ( +
+
- - {isLoading ? ( -
-

Loading posts...

-
- ) : ( -
- -
- )} -
+ )}\n