Update src/app/hockey/page.tsx

This commit is contained in:
2026-03-27 07:42:40 +00:00
parent 3807789395
commit eaee003a63

View File

@@ -2,14 +2,16 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
export default function HockeyPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay navItems={[{ name: "Home", id: "/" }, { name: "Football", id: "/football" }, { name: "Basketball", id: "/basketball" }, { name: "UFC", id: "/ufc" }, { name: "Hockey", id: "/hockey" }, { name: "Baseball", id: "/baseball" }]} brandName="CHODSSPORTS" />
<div className="pt-32 pb-20">
<BlogCardOne title="Hockey News & Highlights" animationType="slide-up" textboxLayout="default" blogs={[]} />
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay navItems={[{ name: "Home", id: "/" }, { name: "Football", id: "/football" }, { name: "Basketball", id: "/basketball" }, { name: "UFC", id: "/ufc" }, { name: "Hockey", id: "/hockey" }, { name: "Baseball", id: "/baseball" }]} />
</div>
<div id="latest" data-section="latest">
<BlogCardThree title="Hockey News & Highlights" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} description="Stay updated on the ice with the latest hockey news." blogs={[]} />
</div>
</ThemeProvider>
);