Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-05-22 16:09:40 +00:00
2 changed files with 41 additions and 0 deletions

40
src/app/draft/page.tsx Normal file
View File

@@ -0,0 +1,40 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function DraftPreviewPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
background="aurora"
cardStyle="gradient-bordered"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
]}
brandName="Aura Dining (Draft)"
/>
<div className="min-h-screen flex flex-col items-center justify-center p-12 text-center">
<h1 className="text-4xl font-bold mb-4">Client Preview Draft</h1>
<p className="max-w-md">This is a non-indexed staging version of the restaurant website. Please review the layout and content before final approval for publication.</p>
</div>
<FooterLogoEmphasis
columns={[]}
logoText="Aura (Draft)"
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "About", id: "about" },
{ name: "Dishes", id: "features" },
{ name: "Contact", id: "contact" },
{ name: "Draft", id: "draft" }
]}
brandName="Aura Dining"
/>