Skip to content

Commit 5cf46dd

Browse files
committed
add favico
1 parent 9711808 commit 5cf46dd

22 files changed

+139
-18
lines changed

astro.config.mjs

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1+
import react from "@astrojs/react";
12
import starlight from '@astrojs/starlight';
23
import tailwind from "@astrojs/tailwind";
3-
import { defineConfig } from 'astro/config';
4-
import react from "@astrojs/react";
54
import icon from "astro-icon";
5+
import { defineConfig } from 'astro/config';
66

77
// https://astro.build/config
88
export default defineConfig({
99
integrations: [starlight({
1010
title: 'fullstackhero',
11+
favicon: '/favicon.ico',
1112
components: {
1213
Pagination: './src/components/footer/pagination.astro'
1314
},
@@ -26,23 +27,31 @@ export default defineConfig({
2627
customCss: ['./src/styles/tailwind.css', './src/styles/custom.scss'],
2728
sidebar: [{
2829
label: 'General',
30+
collapsed: true,
2931
autogenerate: {
30-
directory: '/dotnet-starter-kit/general/'
32+
directory: '/dotnet-starter-kit/general/',
33+
collapsed: true
3134
}
3235
}, {
3336
label: 'Web API',
37+
collapsed: true,
3438
autogenerate: {
35-
directory: '/dotnet-starter-kit/webapi/'
39+
directory: '/dotnet-starter-kit/webapi/',
40+
collapsed: true
3641
}
3742
}, {
3843
label: 'Blazor',
44+
collapsed: true,
3945
autogenerate: {
40-
directory: '/dotnet-starter-kit/blazor/'
46+
directory: '/dotnet-starter-kit/blazor/',
47+
collapsed: true
4148
}
4249
}, {
4350
label: 'Aspire',
51+
collapsed: true,
4452
autogenerate: {
45-
directory: '/dotnet-starter-kit/aspire/'
53+
directory: '/dotnet-starter-kit/aspire/',
54+
collapsed: true
4655
}
4756
}]
4857
}), tailwind({

public/favicon.ico

9.44 KB
Binary file not shown.

public/favicon.svg

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Terraform
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!

src/content/docs/dotnet-starter-kit/general/development-environment.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ description: Setting up the Development Environment for .NET Starter Kit Develop
44
sidebar:
55
order: 2
66
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
---
2-
title: Getting Started
2+
title: Getting Started 🚀
33
description: A guide in my new Starlight docs site.
44
sidebar:
55
order: 1
66
---
77

8-
Guides lead a user through a specific task they want to accomplish, often with a sequence of steps.
9-
Writing a good guide requires thinking about what your users are trying to do.
10-
11-
## Further reading
12-
13-
- Read [about how-to guides](https://diataxis.fr/how-to-guides/) in the Diátaxis framework
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: GitHub Actions
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Solution Structure
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 3
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Architecture
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 1
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Caching
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Configurations
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: CQRS
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: CRUD Operations
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Database Support
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Exception Handling
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Hangfire
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!

src/content/docs/dotnet-starter-kit/webapi/hello.md

-4
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Logging
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Multi Tenancy
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Security
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Swagger
3+
description: Setting up the Development Environment for .NET Starter Kit Development!
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Coming Soon!

0 commit comments

Comments
 (0)