Add src/app/about/page.tsx
This commit is contained in:
63
src/app/about/page.tsx
Normal file
63
src/app/about/page.tsx
Normal file
@@ -0,0 +1,63 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Start", id: "/" },
|
||||
{ name: "Über uns", id: "/about" },
|
||||
{ name: "Speisekarte", id: "/#products" },
|
||||
{ name: "Kontakt", id: "/#contact" },
|
||||
]}
|
||||
brandName="Life Point by Atalay"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about" className="pt-32">
|
||||
<SplitAbout
|
||||
title="Unsere Philosophie"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
description="Bei Life Point by Atalay geht es um mehr als nur Essen. Wir stehen für Tradition, Qualität und Herzlichkeit. Unser Ziel ist es, unseren Gästen nicht nur eine Mahlzeit, sondern ein Erlebnis zu bieten – mit Rezepten, die über Generationen weitergegeben wurden und Zutaten, die täglich frisch von unseren Partnern bezogen werden."
|
||||
bulletPoints={[
|
||||
{ title: "Regionalität", description: "Wir setzen voll und ganz auf lokale Erzeuger." },
|
||||
{ title: "Nachhaltigkeit", description: "Unsere Prozesse sind auf Umweltschonung ausgerichtet." },
|
||||
{ title: "Gastfreundschaft", description: "Jeder Gast ist Teil unserer Familie." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer" className="pt-20">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Über uns", href: "/about" }, { label: "Speisekarte", href: "/#products" }] },
|
||||
{ title: "Kontakt", items: [{ label: "Hauptstrasse 19, 5726 Unterkulm", href: "#" }, { label: "+41 62 771 74 48", href: "tel:+41627717448" }, { label: "lifepoint-unterkulm.ch", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2026 Life Point by Atalay"
|
||||
bottomRightText="lifepoint-unterkulm.ch"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user