Skip to content

Commit 65d69c6

Browse files
committed
small fixes
1 parent 8664735 commit 65d69c6

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

astro.config.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ export default defineConfig({
2020
integrations: [
2121
expressiveCode({
2222
defaultProps: { wrap: true },
23-
shiki: {
24-
bundledLangs: ['shell', 'json'],
25-
},
2623
}),
2724
mdx(),
2825
icon(),

src/components/CarbonAds.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { isDoc = false } = Astro.props;
1212
is:inline
1313
async
1414
type="text/javascript"
15-
src="//cdn.carbonads.com/carbon.js?serve=CK7I6KJE&placement=sdkmanio"
15+
src="https://cdn.carbonads.com/carbon.js?serve=CK7I6KJE&placement=sdkmanio"
1616
id="_carbonads_js"></script>
1717
</div>
1818
</section>

src/components/MobileNavbar.astro

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ import mobileMenu from '@/data/mobile-menu';
55
import { Icon } from 'astro-icon/components';
66
---
77

8-
<Button id="mobile-nav-btn" class="lg:hidden" variant="ghost" size="icon">
8+
<Button
9+
id="mobile-nav-btn"
10+
class="lg:hidden"
11+
variant="ghost"
12+
size="icon"
13+
aria-label="Mobile navigation"
14+
>
915
<Icon class="size-6" name="lucide:menu" />
1016
</Button>
1117

src/components/ui/Breadcrumbs.astro

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

1313
<ol class="flex items-center text-sm font-semibold mb-6 text-muted-foreground flex-wrap break-words">
1414
<li class="flex items-center">
15-
<Link class="hover:text-foreground transition-colors" href="/"><Icon class="h-4 w-4" name="lucide:home" /></Link>
15+
<Link class="hover:text-foreground transition-colors" href="/" aria-label="Home page">
16+
<Icon class="h-4 w-4" name="lucide:home" />
17+
</Link>
1618
<Icon class="mx-1" name="lucide:chevron-right" />
1719
</li>
1820
{

0 commit comments

Comments
 (0)