diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 32ff210..9c98f68 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -10,6 +10,15 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/#about" }, + { name: "Menu", id: "/#products" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, + ]; + return (
@@ -93,8 +93,8 @@ export default function LandingPage() { useInvertedBackground={false} tagAnimation="slide-up" buttonAnimation="slide-up" - titleClassName="text-balance" - descriptionClassName="max-w-xl" + textBoxTitleClassName="text-balance" + textBoxDescriptionClassName="max-w-xl" />
@@ -109,8 +109,8 @@ export default function LandingPage() { animationType="smooth" tagAnimation="slide-up" buttonAnimation="slide-up" - titleClassName="text-balance" - descriptionClassName="max-w-xl" + textBoxTitleClassName="text-balance" + textBoxDescriptionClassName="max-w-xl" />
@@ -121,7 +121,7 @@ export default function LandingPage() { textarea={{'name':'message','placeholder':'Your Message or Order Details...','rows':5,'required':true}} buttonText="Send Message" useInvertedBackground={false} - imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=2" + imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg" imageAlt="Exterior of a traditional Ukrainian bakery" mediaAnimation="slide-up" mediaPosition="right" @@ -133,7 +133,7 @@ export default function LandingPage() { item.id.startsWith('/')); + const navItems = [{"name":"Home","id":"/"},{"name":"About Us","id":"/#about"},{"name":"Menu","id":"/#products"},{"name":"Testimonials","id":"/#testimonials"},{"name":"FAQ","id":"/#faq"},{"name":"Contact","id":"/#contact"},{"name":"Shop","id":"/shop"}].filter(item => item.id.startsWith('/')); if (isLoading) { return ( @@ -107,9 +107,9 @@ function ProductPageContent({ params }: ProductPageProps) { item.id.startsWith('/')); + const navItems = [{"name":"Home","id":"/"},{"name":"About Us","id":"/#about"},{"name":"Menu","id":"/#products"},{"name":"Testimonials","id":"/#testimonials"},{"name":"FAQ","id":"/#faq"},{"name":"Contact","id":"/#contact"},{"name":"Shop","id":"/shop"}].filter(item => item.id.startsWith('/')); if (isLoading) { return ( @@ -72,9 +72,9 @@ function ShopPageContent() {