Skip to content

Commit c3ba207

Browse files
committed
Video link added
Used open.video to create a subdomain of all my youtube videos onto my site. videos.pythonessprogrammer.com
1 parent 5d66111 commit c3ba207

3 files changed

Lines changed: 23 additions & 5 deletions

File tree

public/feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link>https://pythonessprogrammer.com</link>
66
<description>Thoughts on technology, accessibility, and the human experience.</description>
77
<language>en</language>
8-
<lastBuildDate>Fri, 31 Oct 2025 20:19:41 GMT</lastBuildDate>
8+
<lastBuildDate>Sun, 09 Nov 2025 21:33:11 GMT</lastBuildDate>
99
<atom:link href="https://pythonessprogrammer.com/feed.xml" rel="self" type="application/rss+xml" />
1010

1111
<item>

src/components/Footer.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,12 @@ export default function Footer() {
6464
<li><Link href="/passwords" className={footerLinkClass}>Password Security Guide</Link></li>
6565
<li><Link href="/digital-spring-cleaning" className={footerLinkClass}>Digital Spring Cleaning</Link></li>
6666
<li><Link href="/sourdough" className={footerLinkClass}>Sourdough Corner</Link></li>
67+
<li><Link href="/resources" className={footerLinkClass}>All Resources</Link></li>
6768
</ul>
6869
</FooterSection>
6970
</div>
7071

71-
{/* Second Row: Legal, Support the Pythoness, Listen, Read */}
72+
{/* Second Row: Legal, Support the Pythoness, Content, Read */}
7273
<div className="grid grid-cols-2 md:grid-cols-4 gap-4 md:gap-6 md:gap-x-12 pb-2 md:pb-2">
7374
<FooterSection title="Legal">
7475
<ul className="space-y-1">
@@ -83,15 +84,15 @@ export default function Footer() {
8384
<li><Link href="/support" className={footerLinkClass}>Support the Pythoness ☕</Link></li>
8485
</ul>
8586
</FooterSection>
86-
<FooterSection title="Listen">
87-
<ul className="space-y-1" role="list" aria-label="Listen options">
87+
<FooterSection title="Content">
88+
<ul className="space-y-1" role="list" aria-label="Content options">
89+
<li><Link href="https://videos.pythonessprogrammer.com" target="_blank" rel="noopener noreferrer" className={`${footerLinkClass} font-semibold`}>Videos</Link></li>
8890
<li><Link href="https://pythoness.substack.com/podcast" target="_blank" rel="noopener noreferrer" className={footerLinkClass}>NotebookLM Podcast</Link></li>
8991
</ul>
9092
</FooterSection>
9193
<FooterSection title="Read">
9294
<ul className="space-y-1" role="list" aria-label="Read options">
9395
<li><Link href="/blog" className={footerLinkClass}>Blog</Link></li>
94-
<li><Link href="/resources" className={footerLinkClass}>All Resources</Link></li>
9596
<li><Link href="https://newsletter.pythonessprogrammer.com/" target="_blank" rel="noopener noreferrer" className={footerLinkClass}>Newsletter</Link></li>
9697
</ul>
9798
</FooterSection>

src/components/Header.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,14 @@ export default function Header() {
140140
>
141141
Blog
142142
</Link>
143+
<Link
144+
href="https://videos.pythonessprogrammer.com"
145+
target="_blank"
146+
rel="noopener noreferrer"
147+
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"
148+
>
149+
Videos
150+
</Link>
143151
<Link
144152
href="https://stickyspells.etsy.com"
145153
target="_blank"
@@ -287,6 +295,15 @@ export default function Header() {
287295
>
288296
Blog
289297
</Link>
298+
<Link
299+
href="https://videos.pythonessprogrammer.com"
300+
target="_blank"
301+
rel="noopener noreferrer"
302+
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"
303+
onClick={() => setIsMenuOpen(false)}
304+
>
305+
Videos
306+
</Link>
290307
<Link
291308
href="https://stickyspells.etsy.com"
292309
target="_blank"

0 commit comments

Comments
 (0)