diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 69015bf..3a8e885 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -7,6 +7,7 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; +import Link from 'next/link'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); @@ -29,10 +30,10 @@ export default function BlogPage() { ; @@ -74,35 +75,40 @@ function ProductPageContent({ params }: ProductPageProps) { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); - const themeProviderProps = { - defaultButtonVariant: "hover-magnetic", defaultTextAnimation: "entrance-slide", borderRadius: "soft", contentWidth: "mediumSmall", sizing: "mediumLargeSizeMediumTitles", background: "fluid", cardStyle: "glass-depth", primaryButtonStyle: "shadow", secondaryButtonStyle: "radial-glow", headingFontWeight: "normal" - }; - const navbarProps = { navItems: [ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Team", id: "team" }, - { name: "News", id: "blog" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "About", id: "/#about" }, + { name: "Team", id: "/#team" }, + { name: "News", id: "/#blog" }, + { name: "Contact", id: "/#contact" }, ], brandName: "Ferro ZNTU", className: "py-4 px-6", navItemClassName: "text-lg", buttonClassName: "px-5 py-2", buttonTextClassName: "font-semibold", button: { text: "Cart", onClick: () => setCartOpen(true) } }; const footerProps = { logoText: "Ferro ZNTU", columns: [ - { title: "Team", items: [{ label: "About Us", href: "/about" }, { label: "Roster", href: "/team" }, { label: "News", href: "/blog" }] }, + { title: "Team", items: [{ label: "About Us", href: "/#about" }, { label: "Roster", href: "/#team" }, { label: "News", href: "/#blog" }] }, { title: "Fan Zone", items: [{ label: "Merchandise", href: "/shop" }] }, - { title: "Contact", items: [{ label: "Partnerships", href: "/contact" }, { label: "Media Inquiries", href: "/contact" }, { label: "General Contact", href: "/contact" }] } + { title: "Contact", items: [{ label: "Partnerships", href: "/#contact" }, { label: "Media Inquiries", href: "/#contact" }, { label: "General Contact", href: "/#contact" }] } ], - copyrightText: "© 2024 Ferro ZNTU Basketball Club. All rights reserved.", useInvertedBackground: false, - className: "py-10", cardClassName: "p-10", logoTextClassName: "text-3xl font-semibold", columnTitleClassName: "font-medium mb-4", columnItemClassName: "text-foreground/70 hover:text-primary-cta" + copyrightText: "© 2024 Ferro ZNTU Basketball Club. All rights reserved.", className: "py-10", cardClassName: "p-10", logoTextClassName: "text-3xl font-semibold", columnTitleClassName: "font-medium mb-4", columnItemClassName: "text-foreground/70 hover:text-primary-cta" }; if (isLoading) { return ( - +