Update src/app/gallery/page.tsx

This commit is contained in:
2026-05-09 14:22:29 +00:00
parent 1fa0bd8f3d
commit d7a7332b16

View File

@@ -7,7 +7,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
export default function LandingPage() {
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -57,30 +57,14 @@ export default function LandingPage() {
description="Atmosphere and taste in every review."
testimonials={[
{
id: "t1", name: "Alice", title: "Amazing coffee!", role: "@alice"
id: "t1", name: "Alice", quote: "Amazing coffee!", role: "@alice"
},
{
id: "t2", name: "Bob", title: "Best place in town.", role: "@bob"
id: "t2", name: "Bob", quote: "Best place in town.", role: "@bob"
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Aurora Brew"
columns={[
{
title: "Navigate", items: [
{
label: "Menu", href: "/menu"},
{
label: "About", href: "/about"},
],
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);