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
+