├── .github └── dependabot.yml ├── .gitignore ├── README.md ├── package.json ├── package ├── README.md ├── index.ts ├── package.json ├── public │ └── favicon.svg ├── src │ ├── assets │ │ └── houston.webp │ ├── components │ │ └── Hero.astro │ ├── layouts │ │ └── Layout.astro │ ├── pages │ │ └── index.astro │ └── styles │ │ └── global.css └── virtual.d.ts ├── playground ├── .gitignore ├── astro.config.ts ├── package.json ├── src │ └── env.d.ts └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package.json -------------------------------------------------------------------------------- /package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/README.md -------------------------------------------------------------------------------- /package/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/index.ts -------------------------------------------------------------------------------- /package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/package.json -------------------------------------------------------------------------------- /package/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/public/favicon.svg -------------------------------------------------------------------------------- /package/src/assets/houston.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/src/assets/houston.webp -------------------------------------------------------------------------------- /package/src/components/Hero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/src/components/Hero.astro -------------------------------------------------------------------------------- /package/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/src/layouts/Layout.astro -------------------------------------------------------------------------------- /package/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/src/pages/index.astro -------------------------------------------------------------------------------- /package/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/package/src/styles/global.css -------------------------------------------------------------------------------- /package/virtual.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/playground/.gitignore -------------------------------------------------------------------------------- /playground/astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/playground/astro.config.ts -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/playground/src/env.d.ts -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strictest" 3 | } -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrolicious/astro-theme-provider-template/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strictest" 3 | } --------------------------------------------------------------------------------