14 Commits

Author SHA1 Message Date
82257146b4 Merge version_5 into main
Merge version_5 into main
2026-02-24 09:36:32 +00:00
0ba4fbef8b Update src/app/styles/variables.css 2026-02-24 09:36:28 +00:00
a6c066bba9 Update src/app/shop/page.tsx 2026-02-24 09:36:27 +00:00
797dcf6033 Update src/app/shop/[id]/page.tsx 2026-02-24 09:36:27 +00:00
e1268c5f19 Update src/app/products/page.tsx 2026-02-24 09:36:26 +00:00
b4632da12a Update src/app/page.tsx 2026-02-24 09:36:25 +00:00
31cee5b509 Update src/app/blog/page.tsx 2026-02-24 09:36:24 +00:00
e87fa9931d Merge version_4 into main
Merge version_4 into main
2026-02-24 09:28:24 +00:00
ea0e6e79ad Update src/app/styles/variables.css 2026-02-24 09:28:19 +00:00
5033027a36 Update src/app/shop/page.tsx 2026-02-24 09:28:19 +00:00
72ca4644ca Merge version_3 into main
Merge version_3 into main
2026-02-24 09:27:20 +00:00
8d9f3e9f26 Merge version_3 into main
Merge version_3 into main
2026-02-24 08:18:00 +00:00
9db58c8fa9 Merge version_3 into main
Merge version_3 into main
2026-02-24 08:15:45 +00:00
3884f4597f Merge version_3 into main
Merge version_3 into main
2026-02-24 08:11:08 +00:00
6 changed files with 42 additions and 41 deletions

View File

@@ -5,13 +5,13 @@ import { useBlogPosts } from "@/hooks/useBlogPosts";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
const navItemsForSubPages = [
const standardNavItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQs", id: "/#faqs" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
];
export default function BlogPage() {
@@ -33,7 +33,7 @@ export default function BlogPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
navItems={standardNavItems}
button={{ text: "Shop Now", href: "/shop" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"

View File

@@ -10,12 +10,13 @@ import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import { Handshake, HeartHandshake, MessageSquareText, Sparkles } from "lucide-react";
const navItemsForHomePage = [
const standardNavItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQs", id: "faqs" },
{ name: "Contact", id: "contact" },
{ name: "About", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQs", id: "/#faqs" },
{ name: "Contact", id: "/#contact" }
];
export default function SitePage() {
@@ -35,7 +36,7 @@ export default function SitePage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForHomePage}
navItems={standardNavItems}
button={{ text: "Shop Now", href: "/shop" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"
@@ -55,7 +56,7 @@ export default function SitePage() {
enableKpiAnimation={true}
buttons={[
{ text: "Explore Collection", href: "/products" },
{ text: "Our Story", href: "#about" },
{ text: "Our Story", href: "/#about" },
]}
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/uploaded-1770649506170-pxkn8ubj.mp4"
imageAlt="Assortment of stylish cups and mugs from Nano Mango"

View File

@@ -6,13 +6,13 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import { useProductCatalog } from "@/hooks/useProductCatalog";
const navItemsForSubPages = [
const standardNavItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQs", id: "/#faqs" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
];
function ProductsPageContent() {
@@ -43,7 +43,7 @@ function ProductsPageContent() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
navItems={standardNavItems}
button={{ text: "Go to Shop", href: "/shop" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"

View File

@@ -8,13 +8,12 @@ import SplitAbout from '@/components/sections/about/SplitAbout';
import { useProductDetail } from "@/hooks/useProductDetail";
import { DollarSign, Package, CheckCircle } from 'lucide-react';
const navItemsForSubPages = [
const standardNavItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/#about" },
{ name: "Products", id: "/products" }, { name: "About", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQs", id: "/#faqs" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
];
interface ProductPageProps {
@@ -44,7 +43,7 @@ function ProductPageContent({ params }: ProductPageProps) {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
navItems={standardNavItems}
button={{ text: "Back to Shop", href: "/shop" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"
@@ -75,7 +74,7 @@ function ProductPageContent({ params }: ProductPageProps) {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
navItems={standardNavItems}
button={{ text: "Back to Shop", href: "/shop" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"
@@ -113,7 +112,7 @@ function ProductPageContent({ params }: ProductPageProps) {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
navItems={standardNavItems}
button={{ text: "Back to Shop", href: "/shop" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"
@@ -134,7 +133,8 @@ function ProductPageContent({ params }: ProductPageProps) {
{ title: "SKU", description: meta.sku || 'N/A', icon: Package },
{ title: "Status", description: meta.inventoryStatus || 'Available', icon: CheckCircle },
]}
buttons={[{ text: "Explore More Products", href: "/shop" }]}
buttons={[{ text: "Explore More Products", href: "/shop" }]
}
/>
</div>
</ThemeProvider>

View File

@@ -6,13 +6,13 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import { useProductCatalog } from "@/hooks/useProductCatalog";
const navItemsForSubPages = [
const standardNavItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQs", id: "/#faqs" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
];
function ShopPageContent() {
@@ -43,8 +43,8 @@ function ShopPageContent() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Nano Mango"
navItems={navItemsForSubPages}
button={{ text: "View Products", href: "/products" }}
navItems={standardNavItems}
button={{ text: "Contact Us", href: "/#contact" }}
buttonClassName="shadow-lg"
navItemClassName="text-foreground/80 hover:text-foreground"
className="backdrop-blur-sm bg-card/70"

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #060000;;
--card: #1d0d0d;;
--foreground: #ffe6e6;;
--primary-cta: #ff3d4a;;
--secondary-cta: #1f0a0a;;
--accent: #7b2d2d;;
--background-accent: #b8111f;; */
/* --background: #f7f6f7;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #e63946;;
--secondary-cta: #8b5cf6;;
--accent: #c4a8f9;;
--background-accent: #f5c4c7;; */
--background: #060000;;
--card: #1d0d0d;;
--foreground: #ffe6e6;;
--primary-cta: #ff3d4a;;
--primary-cta-text: #060000;;
--secondary-cta: #1f0a0a;;
--secondary-cta-text: #ffe6e6;;
--accent: #7b2d2d;;
--background-accent: #b8111f;;
--background: #f7f6f7;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #e63946;;
--primary-cta-text: #ffffff;;
--secondary-cta: #8b5cf6;;
--secondary-cta-text: #ffffff;;
--accent: #c4a8f9;;
--background-accent: #f5c4c7;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);