Add src/app/blog/page.tsx

This commit is contained in:
2026-03-28 12:16:44 +00:00
parent 48093ca292
commit 9c4e3f3b46

36
src/app/blog/page.tsx Normal file
View File

@@ -0,0 +1,36 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function BlogPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Blog", id: "#blog" },
]}
brandName="Paws & Relax"
/>
<div id="blog" style={{ paddingTop: "100px" }}>
<BlogCardOne
title="Pet Education Hub"
description="Everything you need to know about happy pets."
animationType="slide-up"
blogs={[
{ id: "1", category: "Grooming", title: "Nail Care 101", excerpt: "How to trim safely.", imageSrc: "", authorName: "Staff", authorAvatar: "", date: "2025" }
]}
/>
</div>
<FooterBaseCard
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }] }]}
/>
</ReactLenis>
</ThemeProvider>
);
}