From 055d953de02bccb2267609f08478a0182d76b034 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 31 Jul 2025 01:10:16 +0000 Subject: [PATCH] Add Sticky Spells store link to navigation and links page Co-authored-by: jobs --- src/app/links/page.tsx | 29 +++++++++++++++++++++++++++++ src/components/Footer.tsx | 1 + src/components/Header.tsx | 17 +++++++++++++++++ 3 files changed, 47 insertions(+) diff --git a/src/app/links/page.tsx b/src/app/links/page.tsx index 138440d..6ce3f5f 100644 --- a/src/app/links/page.tsx +++ b/src/app/links/page.tsx @@ -103,6 +103,15 @@ const supportLinks: LinkItem[] = [ } ] +// Shop links section +const shopLinks: LinkItem[] = [ + { + name: 'Sticky Spells Store', + url: 'https://www.pythoness.store', + color: 'bg-brand-green-accent text-brand-green-dark hover:bg-brand-green-accent/90' + } +] + // Media links section const mediaLinks: LinkItem[] = [ { @@ -241,6 +250,26 @@ export default function LinksPage() { )} + {/* Shop Links */} + {shopLinks.length > 0 && ( +
+

Shop

+
+ {shopLinks.map((link) => ( + + {link.name} + + ))} +
+
+ )} + {/* Resource Links */} {resourceLinks.length > 0 && (
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 44d735a..01ffd56 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -34,6 +34,7 @@ export default function Footer() {
  • About
  • Services
  • Resources
  • +
  • Shop - Sticky Spells
  • {/* Social Links */} diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 03cef6f..850549f 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -62,6 +62,14 @@ export default function Header() { > Blog + + Shop + Blog + setIsMenuOpen(false)} + > + Shop +