11 Commits

Author SHA1 Message Date
c18b0db701 Update src/app/styles/variables.css 2026-02-17 14:37:32 +00:00
d4c5432496 Update src/app/shop/page.tsx 2026-02-17 14:37:31 +00:00
9f68418f9b Update src/app/shop/[id]/page.tsx 2026-02-17 14:37:30 +00:00
267a87b9cd Update src/app/page.tsx 2026-02-17 14:37:30 +00:00
37e6b4ba6b Update src/app/blog/page.tsx 2026-02-17 14:37:28 +00:00
3288f0363f Merge version_2 into main
Merge version_2 into main
2026-02-17 14:34:45 +00:00
9607f928d8 Update src/app/styles/variables.css 2026-02-17 14:34:40 +00:00
095ed1c39a Update src/app/shop/page.tsx 2026-02-17 14:34:40 +00:00
757f26c3a3 Update src/app/shop/[id]/page.tsx 2026-02-17 14:34:39 +00:00
a0472ae8b2 Update src/app/page.tsx 2026-02-17 14:34:38 +00:00
eb82d1a0c6 Update src/app/blog/page.tsx 2026-02-17 14:34:37 +00:00
5 changed files with 86 additions and 30 deletions

View File

@@ -36,13 +36,15 @@ export default function BlogPage() {
brandName="Paw Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "adopt" },
{ name: "About", id: "about" },
{ name: "Success", id: "testimonials" },
{ name: "Support", id: "support" },
{ name: "Contact", id: "contact" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Success", id: "/#testimonials" },
{ name: "Support", id: "/#support" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Donate", href: "#contact" }}
button={{ text: "Donate", href: "/#contact" }}
/>
</div>
@@ -76,4 +78,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -29,8 +29,17 @@ export default function SitePage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Paw Haven"
navItems={[{name: 'Adopt', id: 'adopt'}, {name: 'About', id: 'about'}, {name: 'Success', id: 'testimonials'}, {name: 'Support', id: 'support'}, {name: 'Contact', id: 'contact'}]}
button={{text: 'Donate', href: '#contact'}}
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Success", id: "/#testimonials" },
{ name: "Support", id: "/#support" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{text: 'Donate', href: '/#contact'}}
/>
</div>

View File

@@ -85,7 +85,16 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="navbar" data-section="navbar">
<NavbarStyleCentered
brandName="Paw Haven"
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Success", id: "/#testimonials" },
{ name: "Support", id: "/#support" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
@@ -129,7 +138,16 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="navbar" data-section="navbar">
<NavbarStyleCentered
brandName="Paw Haven"
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Success", id: "/#testimonials" },
{ name: "Support", id: "/#support" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
@@ -180,7 +198,16 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="navbar" data-section="navbar">
<NavbarStyleCentered
brandName="Paw Haven"
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Success", id: "/#testimonials" },
{ name: "Support", id: "/#support" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
@@ -235,4 +262,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -60,7 +60,16 @@ export default function ShopPage() {
<div id="navbar" data-section="navbar">
<NavbarStyleCentered
brandName="Paw Haven"
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Success", id: "/#testimonials" },
{ name: "Support", id: "/#support" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
@@ -103,7 +112,16 @@ export default function ShopPage() {
<div id="navbar" data-section="navbar">
<NavbarStyleCentered
brandName="Paw Haven"
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Success", id: "/#testimonials" },
{ name: "Support", id: "/#support" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
@@ -148,4 +166,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -2,21 +2,21 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #1c1c1c;;
--secondary-cta: #ffffff;;
--accent: #6139e6;;
--background-accent: #b3a8e8;; */
/* --background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #ffffffe6;;
--primary-cta: #e6e6e6;;
--secondary-cta: #1a1a1a;;
--accent: #737373;;
--background-accent: #737373;; */
--background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #1c1c1c;;
--secondary-cta: #ffffff;;
--accent: #6139e6;;
--background-accent: #b3a8e8;;
--background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #ffffffe6;;
--primary-cta: #e6e6e6;;
--secondary-cta: #1a1a1a;;
--accent: #737373;;
--background-accent: #737373;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);