├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── astro.config.mjs ├── package.json ├── public └── favicon.svg ├── src ├── assets │ ├── astro-logo.svg │ ├── astro.png │ ├── dark-logo.svg │ ├── hero.svg │ ├── houston.webp │ ├── light-logo.svg │ └── starmint.jpg ├── components │ ├── Card.astro │ ├── CardGrid.astro │ ├── Footer.astro │ ├── GroupName.astro │ ├── Header.astro │ ├── ThemeToggle.astro │ ├── button.tsx │ ├── components.ts │ ├── dropdown-menu.tsx │ ├── header-menu.tsx │ └── icon.tsx ├── content │ ├── config.ts │ └── docs │ │ ├── components │ │ ├── asides.mdx │ │ ├── badge.mdx │ │ └── tabs.mdx │ │ ├── essentials │ │ ├── creating-pages.mdx │ │ ├── deployments.mdx │ │ ├── images.mdx │ │ └── theming.mdx │ │ ├── getting-started │ │ ├── introduction.mdx │ │ └── quickstart.mdx │ │ ├── index.mdx │ │ └── reference │ │ └── example.md ├── env.d.ts ├── lib │ └── utils.ts └── styles │ ├── custom.css │ └── tailwind.css ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Starmint 2 | -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /src/assets/astro-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/assets/astro-logo.svg -------------------------------------------------------------------------------- /src/assets/astro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/assets/astro.png -------------------------------------------------------------------------------- /src/assets/dark-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/assets/dark-logo.svg -------------------------------------------------------------------------------- /src/assets/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/assets/hero.svg -------------------------------------------------------------------------------- /src/assets/houston.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/assets/houston.webp -------------------------------------------------------------------------------- /src/assets/light-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/assets/light-logo.svg -------------------------------------------------------------------------------- /src/assets/starmint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/assets/starmint.jpg -------------------------------------------------------------------------------- /src/components/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/Card.astro -------------------------------------------------------------------------------- /src/components/CardGrid.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/CardGrid.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/GroupName.astro: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/ThemeToggle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/ThemeToggle.astro -------------------------------------------------------------------------------- /src/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/button.tsx -------------------------------------------------------------------------------- /src/components/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/components.ts -------------------------------------------------------------------------------- /src/components/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/header-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/header-menu.tsx -------------------------------------------------------------------------------- /src/components/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/components/icon.tsx -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/docs/components/asides.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/components/asides.mdx -------------------------------------------------------------------------------- /src/content/docs/components/badge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/components/badge.mdx -------------------------------------------------------------------------------- /src/content/docs/components/tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/components/tabs.mdx -------------------------------------------------------------------------------- /src/content/docs/essentials/creating-pages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/essentials/creating-pages.mdx -------------------------------------------------------------------------------- /src/content/docs/essentials/deployments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/essentials/deployments.mdx -------------------------------------------------------------------------------- /src/content/docs/essentials/images.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/essentials/images.mdx -------------------------------------------------------------------------------- /src/content/docs/essentials/theming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/essentials/theming.mdx -------------------------------------------------------------------------------- /src/content/docs/getting-started/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/getting-started/introduction.mdx -------------------------------------------------------------------------------- /src/content/docs/getting-started/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/getting-started/quickstart.mdx -------------------------------------------------------------------------------- /src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/index.mdx -------------------------------------------------------------------------------- /src/content/docs/reference/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/content/docs/reference/example.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/styles/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/styles/custom.css -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwhitmore/astro-mintlify/HEAD/tsconfig.json --------------------------------------------------------------------------------