Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 25cca8f2cb | |||
| 467d766548 | |||
| 563c9ad5d8 | |||
| c285e1a4b8 | |||
| 09b557abe1 |
64
src/app/features-page/page.tsx
Normal file
64
src/app/features-page/page.tsx
Normal file
@@ -0,0 +1,64 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
|
||||
export default function FeaturesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLarge"
|
||||
background="none"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Features", id: "features-page" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Asian Lotus"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features" className="pt-32 pb-20">
|
||||
<FeatureCardTwelve
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "f1", label: "Tradition", title: "Authentic Recipes", items: ["Traditional cooking techniques", "Fresh, sourced ingredients", "Time-honored recipes"] },
|
||||
{ id: "f2", label: "Lifestyle", title: "Flexible Options", items: ["Vegan options available", "Family-friendly setting", "Outdoor seating vibe"] },
|
||||
{ id: "f3", label: "Value", title: "Service & Value", items: ["Affordable AED 50–100", "Fast delivery & pickup", "Convenient location"] },
|
||||
]}
|
||||
title="Our Restaurant Features"
|
||||
description="Discover what makes Asian Lotus a unique dining experience in Deira."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Asian Lotus"
|
||||
leftLink={{ text: "Deira – Port Saeed – Dubai", href: "/" }}
|
||||
rightLink={{ text: "Hours: 11 AM – 12 AM", href: "/" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -32,6 +32,7 @@ export default function LandingPage() {
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Features", id: "features-page" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
|
||||
Reference in New Issue
Block a user