Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a7b530fda | |||
| 0ede5ab6f7 | |||
| ce601fb368 | |||
| a6a3c696d9 | |||
| 45be2ba698 | |||
| d5d6bbd0e9 | |||
| 217036c10d | |||
| 22f2aded7f |
73
src/app/gallery/page.tsx
Normal file
73
src/app/gallery/page.tsx
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
|
import ProductCardThree from "@/components/sections/product/ProductCardThree";
|
||||||
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||||
|
|
||||||
|
export default function GalleryPage() {
|
||||||
|
const navItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Menu", id: "/menu" },
|
||||||
|
{ name: "About Us", id: "/about" },
|
||||||
|
{ name: "Gallery", id: "/gallery" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
const footerNavItems = [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Menu", href: "/menu" },
|
||||||
|
{ label: "About Us", href: "/about" },
|
||||||
|
{ label: "Gallery", href: "/gallery" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
];
|
||||||
|
|
||||||
|
const galleryImages = [
|
||||||
|
{ id: "gallery-1", name: "Coffee house interior 1", price: "$0.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eo92VX4XGToL3hJ6s2qTy9u6oW/uploaded-1780835934922-44tnotr2.jpg", imageAlt: "Coffee house interior 1" },
|
||||||
|
{ id: "gallery-2", name: "Coffee house interior 2", price: "$0.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eo92VX4XGToL3hJ6s2qTy9u6oW/uploaded-1780835934922-zvjgkvrz.jpg", imageAlt: "Coffee house interior 2" },
|
||||||
|
{ id: "gallery-3", name: "Coffee house interior 3", price: "$0.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eo92VX4XGToL3hJ6s2qTy9u6oW/uploaded-1780835934922-njmd1ni9.jpg", imageAlt: "Coffee house interior 3" },
|
||||||
|
{ id: "gallery-4", name: "Coffee house interior 4", price: "$0.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eo92VX4XGToL3hJ6s2qTy9u6oW/uploaded-1780835934922-4l2tzt4b.jpg", imageAlt: "Coffee house interior 4" },
|
||||||
|
{ id: "gallery-5", name: "Coffee house interior 5", price: "$0.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eo92VX4XGToL3hJ6s2qTy9u6oW/uploaded-1780835934922-r6i9kf7e.jpg", imageAlt: "Coffee house interior 5" }
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="expand-hover"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="smallMedium"
|
||||||
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
|
background="grid"
|
||||||
|
cardStyle="gradient-radial"
|
||||||
|
primaryButtonStyle="shadow"
|
||||||
|
secondaryButtonStyle="radial-glow"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleApple brandName="Mian Coffee House" navItems={navItems} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="gallery-section" data-section="gallery-section" className="min-h-screen">
|
||||||
|
<ProductCardThree
|
||||||
|
title="Our Photo Gallery"
|
||||||
|
description="A visual journey through Mian Coffee House – from our cozy interiors to our delicious offerings."
|
||||||
|
products={galleryImages}
|
||||||
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer" className="lg:h-90">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
logoText="Mian Coffee House"
|
||||||
|
columns={[
|
||||||
|
{ items: footerNavItems },
|
||||||
|
{ items: [{ label: "Instagram", href: "https://www.instagram.com/mian.jo" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -14,7 +14,7 @@ export default function HomePage() {
|
|||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Menu", id: "/menu" },
|
{ name: "Menu", id: "/menu" },
|
||||||
{ name: "About Us", id: "#about" },
|
{ name: "About Us", id: "/about" },
|
||||||
{ name: "Gallery", id: "/gallery" },
|
{ name: "Gallery", id: "/gallery" },
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
@@ -22,7 +22,7 @@ export default function HomePage() {
|
|||||||
const footerNavItems = [
|
const footerNavItems = [
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "Menu", href: "/menu" },
|
{ label: "Menu", href: "/menu" },
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Gallery", href: "/gallery" },
|
{ label: "Gallery", href: "/gallery" },
|
||||||
{ label: "Contact", href: "/contact" }
|
{ label: "Contact", href: "/contact" }
|
||||||
];
|
];
|
||||||
@@ -62,7 +62,7 @@ export default function HomePage() {
|
|||||||
<div id="about" data-section="about" className="lg:h-120">
|
<div id="about" data-section="about" className="lg:h-120">
|
||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
heading={[{ type: "text", content: "Crafting Exceptional Coffee Experiences" }]}
|
heading={[{ type: "text", content: "Crafting Exceptional Coffee Experiences" }]}
|
||||||
buttons={[{ text: "Learn More", href: "#about" }]}
|
buttons={[{ text: "Learn More", href: "/about" }]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user