Merge version_2 into main #3
40
src/app/draft/page.tsx
Normal file
40
src/app/draft/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user