Add src/app/reviews/page.tsx

This commit is contained in:
2026-03-29 14:33:59 +00:00
parent 431f88decd
commit c4ecb185d1

30
src/app/reviews/page.tsx Normal file
View File

@@ -0,0 +1,30 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ReviewsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Menu", id: "/menu" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "contact" },
]}
brandName="Merhaba Habesha"
/>
<div className="min-h-screen py-24 px-6 flex flex-col items-center justify-center">
<h1 className="text-4xl font-bold mb-6">Customer Reviews</h1>
<p className="text-lg text-center max-w-2xl">See what our wonderful community in Cardiff has to say about us.</p>
</div>
<FooterBaseReveal columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}