├── .env.example ├── .gitignore ├── .npmrc ├── .stackblitzrc ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── favicon.ico └── robots.txt ├── sandbox.config.json ├── src ├── components │ └── Header.astro ├── lib │ └── api.js ├── pages │ ├── [slug].astro │ └── index.astro └── styles │ └── global.css ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | WP_URL=http://localhost:8000/graphql -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/.npmrc -------------------------------------------------------------------------------- /.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/.stackblitzrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/sandbox.config.json -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/src/lib/api.js -------------------------------------------------------------------------------- /src/pages/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/src/pages/[slug].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebelchris/astropress/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleResolution": "node" 3 | } 4 | --------------------------------------------------------------------------------