Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions src/app/links/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [
{
Expand Down Expand Up @@ -241,6 +250,26 @@ export default function LinksPage() {
</div>
)}

{/* Shop Links */}
{shopLinks.length > 0 && (
<div className="space-y-3">
<h2 className="font-display text-xl text-white text-center">Shop</h2>
<div className="space-y-3">
{shopLinks.map((link) => (
<Link
key={link.name}
href={link.url}
target="_blank"
rel="noopener noreferrer"
className={`block ${link.color} py-2.5 md:py-3 px-6 rounded-lg text-center transition-transform hover:scale-105 focus:outline-none focus:ring-2 focus:ring-brand-green-accent focus:ring-offset-2 focus:ring-offset-brand-green-dark font-medium`}
>
{link.name}
</Link>
))}
</div>
</div>
)}

{/* Resource Links */}
{resourceLinks.length > 0 && (
<div className="space-y-3">
Expand Down
1 change: 1 addition & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default function Footer() {
<li><Link href="/about" className={footerLinkClass}>About</Link></li>
<li><Link href="/services" className={footerLinkClass}>Services</Link></li>
<li><Link href="/resources" className={footerLinkClass}>Resources</Link></li>
<li><Link href="https://www.pythoness.store" target="_blank" rel="noopener noreferrer" className={`${footerLinkClass} font-medium`}>Shop - Sticky Spells</Link></li>
</ul>
</FooterSection>
{/* Social Links */}
Expand Down
17 changes: 17 additions & 0 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ export default function Header() {
>
Blog
</Link>
<Link
href="https://www.pythoness.store"
target="_blank"
rel="noopener noreferrer"
className="text-white hover:text-brand-green-accent transition-colors focus:outline-none focus:ring-2 focus:ring-brand-green-accent focus:ring-offset-2 rounded-lg px-2 py-1 font-medium"
>
Shop
</Link>
<Link
href="https://cal.com/pythoness"
target="_blank"
Expand Down Expand Up @@ -147,6 +155,15 @@ export default function Header() {
>
Blog
</Link>
<Link
href="https://www.pythoness.store"
target="_blank"
rel="noopener noreferrer"
className="text-white hover:text-brand-green-accent transition-colors focus:outline-none focus:ring-2 focus:ring-brand-green-accent focus:ring-offset-2 rounded-lg px-2 py-1 font-medium"
onClick={() => setIsMenuOpen(false)}
>
Shop
</Link>
<Link
href="https://cal.com/pythoness"
target="_blank"
Expand Down
Loading