15 Commits

Author SHA1 Message Date
18e5ddf053 Merge version_3 into main
Merge version_3 into main
2026-02-21 10:17:04 +00:00
33f9813308 Update src/app/page.tsx 2026-02-21 10:17:01 +00:00
cdaa3e8231 Merge version_3 into main
Merge version_3 into main
2026-02-20 17:18:40 +00:00
36fcf4edf6 Update src/app/page.tsx 2026-02-20 17:18:36 +00:00
52131a3db7 Merge version_3 into main
Merge version_3 into main
2026-02-20 17:15:43 +00:00
a654febaba Update src/app/page.tsx 2026-02-20 17:15:39 +00:00
f74d7191f8 Merge version_2 into main
Merge version_2 into main
2026-02-20 17:09:43 +00:00
f82014b795 Update src/app/shop/page.tsx 2026-02-20 17:09:39 +00:00
c37be441cb Update src/app/shop/[id]/page.tsx 2026-02-20 17:09:38 +00:00
cd73059980 Update src/app/page.tsx 2026-02-20 17:09:38 +00:00
b0b3f86b8f Update src/app/blog/page.tsx 2026-02-20 17:09:38 +00:00
d6a9bab60a Merge version_1 into main
Merge version_1 into main
2026-02-20 17:06:08 +00:00
64a40abf83 Merge version_1 into main
Merge version_1 into main
2026-02-20 17:03:08 +00:00
4666b0ebb1 Merge version_1 into main
Merge version_1 into main
2026-02-20 17:02:22 +00:00
f17ad7912e Merge version_1 into main
Merge version_1 into main
2026-02-20 17:00:04 +00:00
4 changed files with 78 additions and 46 deletions

View File

@@ -29,12 +29,14 @@ export default function BlogPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: 'Home', id: '/' },
{ name: 'Menu', id: '/#menu' },
{ name: 'About', id: '/#about' },
{ name: 'Testimonials', id: '/#testimonials' },
{ name: 'FAQ', id: '/#faq' },
{ name: 'Contact', id: '/#contact' },
{ name: 'Blog', id: '/blog' },
{ name: 'Shop', id: '/shop' }
]}
brandName="Ninja Panda"
/>
@@ -64,14 +66,14 @@ export default function BlogPage() {
columns={[
{
title: "About Us", items: [
{ label: "Our Story", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Our Story", href: "/#about" },
{ label: "Menu", href: "/#menu" },
],
},
{
title: "Help", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
{

View File

@@ -28,11 +28,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: 'Menu', id: 'menu' },
{ name: 'About', id: 'about' },
{ name: 'Testimonials', id: 'testimonials' },
{ name: 'FAQ', id: 'faq' },
{ name: 'Contact', id: 'contact' },
{ name: 'Home', id: '/' },
{ name: 'Menu', id: '/#menu' },
{ name: 'About', id: '/#about' },
{ name: 'Testimonials', id: '/#testimonials' },
{ name: 'FAQ', id: '/#faq' },
{ name: 'Contact', id: '/#contact' },
{ name: 'Blog', id: '/blog' },
{ name: 'Shop', id: '/shop' }
]}
brandName="Ninja Panda"
/>
@@ -43,15 +46,12 @@ export default function LandingPage() {
logoText="Ninja Panda"
description="Experience the art of sushi at Ninja Panda. Fresh ingredients, exquisite flavors, and a welcoming ambiance await you."
buttons={[{ text: 'View Menu', href: '#menu' }, { text: 'Make a Reservation', href: '#contact' }]}
background={{ variant: 'sparkles-gradient' }}
imageSrc="https://img.b2bpic.net/free-photo/various-sushi-rolls-plate_140725-4318.jpg"
imageAlt="A vibrant sushi platter with various fresh sushi and sashimi."
mediaAnimation="opacity"
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_39wUS55JyAFrwEMgYtJH8uLR3B2/uploaded-1771669015732-fpsx5dsd.mp4"
imageAlt="Ninja Panda logo"
background={{ variant: 'plain' }}
mediaAnimation="none"
frameStyle="card"
ariaLabel="Hero section featuring Ninja Panda logo and delicious sushi."
logoContainerClassName="max-w-screen-md mx-auto"
logoClassName="text-foreground"
descriptionClassName="max-w-xl mx-auto md:mr-0 text-center md:text-right"
ariaLabel="Hero section featuring Ninja Panda logo and a main image."
/>
</div>
@@ -64,7 +64,7 @@ export default function LandingPage() {
]}
useInvertedBackground={false}
ariaLabel="About section detailing Ninja Panda's story and culinary philosophy."
buttons={[{ text: 'Learn More', href: '#about' }]}
buttons={[{ text: 'Learn More', href: '/#about' }]}
showBorder={true}
titleClassName="text-center md:text-left"
descriptionClassName="text-center md:text-left mx-auto max-w-2xl md:max-w-none"
@@ -239,8 +239,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: 'About Us', items: [{ label: 'Our Story', href: '#about' }, { label: 'Menu', href: '#menu' }] },
{ title: 'Help', items: [{ label: 'FAQ', href: '#faq' }, { label: 'Contact', href: '#contact' }] },
{ title: 'About Us', items: [{ label: 'Our Story', href: '/#about' }, { label: 'Menu', href: '/#menu' }] },
{ title: 'Help', items: [{ label: 'FAQ', href: '/#faq' }, { label: 'Contact', href: '/#contact' }] },
{ title: 'Legal', items: [{ label: 'Privacy Policy', href: '/privacy' }] },
]}
logoText="Ninja Panda"

View File

@@ -84,8 +84,14 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: 'Home', id: '/' },
{ name: 'Menu', id: '/#menu' },
{ name: 'About', id: '/#about' },
{ name: 'Testimonials', id: '/#testimonials' },
{ name: 'FAQ', id: '/#faq' },
{ name: 'Contact', id: '/#contact' },
{ name: 'Blog', id: '/blog' },
{ name: 'Shop', id: '/shop' }
]}
brandName="Ninja Panda"
/>
@@ -98,8 +104,8 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Menu", href: "#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Menu", href: "/#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }] }
]}
logoText="Ninja Panda"
@@ -130,8 +136,14 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: 'Home', id: '/' },
{ name: 'Menu', id: '/#menu' },
{ name: 'About', id: '/#about' },
{ name: 'Testimonials', id: '/#testimonials' },
{ name: 'FAQ', id: '/#faq' },
{ name: 'Contact', id: '/#contact' },
{ name: 'Blog', id: '/blog' },
{ name: 'Shop', id: '/shop' }
]}
brandName="Ninja Panda"
/>
@@ -152,8 +164,8 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Menu", href: "#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Menu", href: "/#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }] }
]}
logoText="Ninja Panda"
@@ -184,8 +196,14 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleApple
brandName="Ninja Panda"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: 'Home', id: '/' },
{ name: 'Menu', id: '/#menu' },
{ name: 'About', id: '/#about' },
{ name: 'Testimonials', id: '/#testimonials' },
{ name: 'FAQ', id: '/#faq' },
{ name: 'Contact', id: '/#contact' },
{ name: 'Blog', id: '/blog' },
{ name: 'Shop', id: '/shop' }
]}
/>
</div>
@@ -228,8 +246,8 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Menu", href: "#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Menu", href: "/#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }] }
]}
logoText="Ninja Panda"

View File

@@ -60,8 +60,14 @@ export default function ShopPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: 'Home', id: '/' },
{ name: 'Menu', id: '/#menu' },
{ name: 'About', id: '/#about' },
{ name: 'Testimonials', id: '/#testimonials' },
{ name: 'FAQ', id: '/#faq' },
{ name: 'Contact', id: '/#contact' },
{ name: 'Blog', id: '/blog' },
{ name: 'Shop', id: '/shop' }
]}
brandName="Ninja Panda"
/>
@@ -74,8 +80,8 @@ export default function ShopPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Menu", href: "#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Menu", href: "/#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }] }
]}
logoText="Ninja Panda"
@@ -105,8 +111,14 @@ export default function ShopPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: 'Home', id: '/' },
{ name: 'Menu', id: '/#menu' },
{ name: 'About', id: '/#about' },
{ name: 'Testimonials', id: '/#testimonials' },
{ name: 'FAQ', id: '/#faq' },
{ name: 'Contact', id: '/#contact' },
{ name: 'Blog', id: '/blog' },
{ name: 'Shop', id: '/shop' }
]}
brandName="Ninja Panda"
/>
@@ -140,8 +152,8 @@ export default function ShopPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Menu", href: "#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Menu", href: "/#menu" }] },
{ title: "Help", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }] }
]}
logoText="Ninja Panda"