Skip to content

Commit f00c820

Browse files
committed
docs: customize sidebar and update social links
- Update sidebar structure with new categories and items - Modify social links to point to the relevant GitHub repository - Adjust title to reflect project name
1 parent e9a7781 commit f00c820

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ To preview changes or contribute to the documentation, you can run a local devel
4141

4242
## 📝 License
4343

44-
## 📝 License
45-
4644
This repository uses a dual-licensing model to provide clarity for different types of content.
4745

4846
#### Documentation Content

astro.config.mjs

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,33 @@ import starlight from '@astrojs/starlight';
66
export default defineConfig({
77
integrations: [
88
starlight({
9-
title: 'My Docs',
10-
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/withastro/starlight' }],
9+
title: 'Flutter News App Toolkit',
10+
social: [
11+
{
12+
icon: 'github',
13+
label: 'GitHub',
14+
href: 'https://github.com/flutter-news-app-full-source-code',
15+
},
16+
],
1117
sidebar: [
1218
{
13-
label: 'Guides',
19+
label: 'Welcome',
1420
items: [
15-
// Each item here is one entry in the navigation menu.
16-
{ label: 'Example Guide', slug: 'guides/example' },
21+
{ label: 'Introduction', slug: 'welcome/introduction' },
22+
// { label: 'Core Philosophy', slug: 'welcome/core-philosophy' },
1723
],
1824
},
1925
{
20-
label: 'Reference',
21-
autogenerate: { directory: 'reference' },
26+
label: 'Getting Started',
27+
autogenerate: { directory: 'getting-started' },
28+
},
29+
{
30+
label: 'Deployment Guides',
31+
autogenerate: { directory: 'deployment' },
32+
},
33+
{
34+
label: 'Web Dashboard',
35+
autogenerate: { directory: 'web-dashboard' },
2236
},
2337
],
2438
}),

0 commit comments

Comments
 (0)