Add src/app/football/page.tsx
This commit is contained in:
16
src/app/football/page.tsx
Normal file
16
src/app/football/page.tsx
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||||
|
|
||||||
|
export default function FootballPage() {
|
||||||
|
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="Football News & Highlights" animationType="slide-up" textboxLayout="default" blogs={[]} />
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user