├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── favicon.svg └── fonts │ └── geist-font │ ├── fonts │ ├── GeistMonoVariableVF.ttf │ ├── GeistMonoVariableVF.woff2 │ ├── GeistVariableVF.ttf │ ├── GeistVariableVF.woff2 │ └── LICENSE.TXT │ └── style.css ├── src ├── css │ └── app.css ├── env.d.ts └── pages │ └── index.astro └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/geist-font/fonts/GeistMonoVariableVF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/public/fonts/geist-font/fonts/GeistMonoVariableVF.ttf -------------------------------------------------------------------------------- /public/fonts/geist-font/fonts/GeistMonoVariableVF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/public/fonts/geist-font/fonts/GeistMonoVariableVF.woff2 -------------------------------------------------------------------------------- /public/fonts/geist-font/fonts/GeistVariableVF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/public/fonts/geist-font/fonts/GeistVariableVF.ttf -------------------------------------------------------------------------------- /public/fonts/geist-font/fonts/GeistVariableVF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/public/fonts/geist-font/fonts/GeistVariableVF.woff2 -------------------------------------------------------------------------------- /public/fonts/geist-font/fonts/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/public/fonts/geist-font/fonts/LICENSE.TXT -------------------------------------------------------------------------------- /public/fonts/geist-font/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/public/fonts/geist-font/style.css -------------------------------------------------------------------------------- /src/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/src/css/app.css -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franken-ui/template-astro/HEAD/tsconfig.json --------------------------------------------------------------------------------