11 Commits

Author SHA1 Message Date
e59774f7d7 Update src/app/menu/page.tsx 2026-06-07 12:42:04 +00:00
d6c8bdbbd0 Merge version_3 into main
Merge version_3 into main
2026-06-07 12:40:21 +00:00
7a7b530fda Update src/app/gallery/page.tsx 2026-06-07 12:40:18 +00:00
d6b3bd9323 Merge version_3 into main
Merge version_3 into main
2026-06-07 12:39:49 +00:00
0ede5ab6f7 Update src/app/page.tsx 2026-06-07 12:39:46 +00:00
ce601fb368 Update src/app/menu/page.tsx 2026-06-07 12:39:46 +00:00
a6a3c696d9 Add src/app/gallery/page.tsx 2026-06-07 12:39:45 +00:00
45be2ba698 Update src/app/contact/page.tsx 2026-06-07 12:39:45 +00:00
d5d6bbd0e9 Update src/app/about/page.tsx 2026-06-07 12:39:45 +00:00
217036c10d Merge version_2 into main
Merge version_2 into main
2026-06-07 12:14:57 +00:00
22f2aded7f Merge version_2 into main
Merge version_2 into main
2026-06-07 12:14:20 +00:00
4 changed files with 79 additions and 6 deletions

View File

@@ -68,4 +68,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -74,4 +74,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

73
src/app/gallery/page.tsx Normal file
View 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>
);
}

View File

@@ -14,7 +14,7 @@ export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About Us", id: "#about" },
{ name: "About Us", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" }
];
@@ -22,7 +22,7 @@ export default function HomePage() {
const footerNavItems = [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
{ label: "About Us", href: "#about" },
{ label: "About Us", href: "/about" },
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" }
];
@@ -62,7 +62,7 @@ export default function HomePage() {
<div id="about" data-section="about" className="lg:h-120">
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Crafting Exceptional Coffee Experiences" }]}
buttons={[{ text: "Learn More", href: "#about" }]}
buttons={[{ text: "Learn More", href: "/about" }]}
useInvertedBackground={false}
/>
</div>
@@ -124,4 +124,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}