diff --git a/astro.config.mjs b/astro.config.mjs index 0cf33da..b6c574a 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -22,16 +22,12 @@ export default defineConfig({ }, sidebar: [ { - label: "Guides", + label: "Python", items: [ // Each item here is one entry in the navigation menu. - { label: "Example Guide", slug: "guides/example" }, + { label: "Introduction", slug: "python/introduction" }, ], }, - { - label: "Reference", - autogenerate: { directory: "reference" }, - }, ], components: { Header: "./src/components/Header.astro", diff --git a/public/images/python-logo-generic.svg b/public/images/python-logo-generic.svg new file mode 100644 index 0000000..116eaac --- /dev/null +++ b/public/images/python-logo-generic.svg @@ -0,0 +1,269 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/python-logo-snake-only.svg b/public/images/python-logo-snake-only.svg new file mode 100644 index 0000000..467b07b --- /dev/null +++ b/public/images/python-logo-snake-only.svg @@ -0,0 +1,265 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index 9ea9f52..391239d 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -6,7 +6,7 @@ import type { Props } from "@astrojs/starlight/props"