Add src/app/about/page.tsx

This commit is contained in:
2026-05-13 21:17:46 +00:00
parent 181dee64ff
commit 0b144dcfe1

53
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,53 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="grid"
cardStyle="inset"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "hero" },
{ name: "Menu", id: "menu" },
{ name: "Reservations", id: "pricing" },
{ name: "Events", id: "features" },
{ name: "About", href: "/about" },
{ name: "Contact", href: "/contact" },
]}
brandName="SOYA"
/>
<div className="pt-32 pb-20">
<InlineImageSplitTextAbout
useInvertedBackground={true}
heading={[
{ type: "text", content: "The Soul of " },
{ type: "image", src: "http://img.b2bpic.net/free-photo/man-dancing-with-woman-restaurant_23-2148016782.jpg", alt: "Luxury" },
{ type: "text", content: " Asian Fusion" },
]}
/>
</div>
<FooterLogoReveal
logoText="SOYA"
leftLink={{ text: "Terms & Conditions", href: "#" }}
rightLink={{ text: "© 2024 Soya Restaurant", href: "#" }}
/>
</ReactLenis>
</ThemeProvider>
);
}