Skip to content

Commit 3a262b6

Browse files
committed
fix: GPT Chat link wasn't added to mobile menu
1 parent b35f2df commit 3a262b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/NavBar.astro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ const { ...attrs } = Astro.props;
1212
---
1313

1414
<div
15-
class="navbar-container sticky top-0 z-10 mb-8 w-full border-b border-base/50 bg-primary-50 px-4 py-2 dark:border-base/40 dark:bg-primary-950 sm:px-6 md:px-10 xl:px-14" {...attrs}>
15+
class="navbar-container sticky top-0 z-10 mb-8 w-full border-b border-base/50 bg-primary-50 px-4 py-2 dark:border-base/40 dark:bg-primary-950 sm:px-6 md:px-10 xl:px-14"
16+
{...attrs}>
1617
<div
1718
class="button-container flex items-center justify-between text-dark dark:text-light">
1819
<a href="/" aria-label="home button">
@@ -56,6 +57,7 @@ const { ...attrs } = Astro.props;
5657
{ name: 'Blog', url: '/blog' },
5758
{ name: 'Minimal Typography', url: '/designProject' },
5859
{ name: 'Old Flask Site', url: '/flaskSite' },
60+
{ name: 'GPT Chat', url: '/gpt' },
5961
]}
6062
showCaret={false}
6163
icon={true}

0 commit comments

Comments
 (0)