Merge version_3 into main
Merge version_3 into main
This commit was merged in pull request #3.
This commit is contained in:
@@ -33,7 +33,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Products", href: "/products" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Dine Above the Clouds"
|
||||
description="Experience panoramic city views combined with culinary excellence at the Sky Moon Lounge & Rooftop, your premier destination for upscale dining in Dhaka."
|
||||
buttons={[{ text: "Reserve Now", href: "#contact" }, { text: "View Menu", href: "#menu" }]}
|
||||
buttons={[{ text: "Reserve Now", href: "#contact" }, { text: "View Products", href: "/products" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/diverse-ethnic-friendship-party-leisure-happiness-concept_53876-42765.jpg"
|
||||
imageAlt="Sky Moon Rooftop at night"
|
||||
/>
|
||||
@@ -73,11 +73,10 @@ export default function LandingPage() {
|
||||
{ id: "2", brand: "Fusion", name: "Artisan Pizza", price: "৳600", rating: 5, reviewCount: "110", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipP_nN2QyJkX8xT1Xw7r4z8k9e2l6p0h4y6m4w0r=w800-h600-k-no" },
|
||||
{ id: "3", brand: "Global", name: "Premium Sushi", price: "৳600", rating: 4, reviewCount: "45", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipO-Z1r_w6oT4Q2u5z0o8h9m1r8w2l4y6p7w3e6l=w800-h600-k-no" },
|
||||
{ id: "4", brand: "Authentic", name: "Royal Biryani", price: "৳450", rating: 5, reviewCount: "95", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipQ5m1r8t4oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" },
|
||||
{ id: "5", brand: "Beverage", name: "Refreshing Mocktail", price: "৳250", rating: 4, reviewCount: "30", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipN4y7r4t2oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" },
|
||||
{ id: "6", brand: "Classic", name: "Grilled Platter", price: "৳500", rating: 4, reviewCount: "67", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipM5r8t4oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" },
|
||||
]}
|
||||
title="Signature Culinary Delights"
|
||||
description="Indulge in a curated selection of dishes that define our signature experience, ranging from authentic tandoori to global fusion."
|
||||
buttons={[{ text: "Explore All Products", href: "/products" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -154,7 +153,7 @@ export default function LandingPage() {
|
||||
<FooterLogoEmphasis
|
||||
logoText="Sky Moon Lounge"
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }, { label: "Menu", href: "#menu" }] },
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Products", href: "/products" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
{ items: [{ label: "01911-100272", href: "tel:01911100272" }, { label: "Mirpur-11, Dhaka", href: "#" }] },
|
||||
]}
|
||||
@@ -163,4 +162,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
69
src/app/products/page.tsx
Normal file
69
src/app/products/page.tsx
Normal file
@@ -0,0 +1,69 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
|
||||
export default function ProductsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmall"
|
||||
background="blurBottom"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "About", href: "/#about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Testimonials", href: "/#testimonials" },
|
||||
{ name: "Contact", href: "/#contact" },
|
||||
]}
|
||||
brandName="Sky Moon Lounge"
|
||||
button={{ text: "Reservations", href: "/#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
title="Our Full Collection"
|
||||
description="Explore our complete culinary offerings, from signature dishes to refreshing beverages."
|
||||
animationType="slide-up"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{ id: "1", name: "Tandoori Special", price: "৳550", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipN3-y1G_Y5L8S3eZ1zW6K0S8q7k9t8t7u4G2o5l=w800-h600-k-no" },
|
||||
{ id: "2", name: "Artisan Pizza", price: "৳600", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipP_nN2QyJkX8xT1Xw7r4z8k9e2l6p0h4y6m4w0r=w800-h600-k-no" },
|
||||
{ id: "3", name: "Premium Sushi", price: "৳600", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipO-Z1r_w6oT4Q2u5z0o8h9m1r8w2l4y6p7w3e6l=w800-h600-k-no" },
|
||||
{ id: "4", name: "Royal Biryani", price: "৳450", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipQ5m1r8t4oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" },
|
||||
{ id: "5", name: "Refreshing Mocktail", price: "৳250", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipN4y7r4t2oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" },
|
||||
{ id: "6", name: "Grilled Platter", price: "৳500", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipM5r8t4oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Sky Moon Lounge"
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Products", href: "/products" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
{ items: [{ label: "01911-100272", href: "tel:01911100272" }, { label: "Mirpur-11, Dhaka", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user