├── .dockerignore ├── .envrc ├── .github ├── CODEOWNERS └── workflows │ ├── Deploy.yaml │ └── ESLint.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── astro.config.ts ├── bun.lock ├── eslint.config.js ├── flake.lock ├── flake.nix ├── package.json ├── public ├── avatars │ └── furry.jpg ├── bg.png └── robots.txt ├── renovate.json ├── src ├── env.d.ts ├── pages │ └── index.astro └── styles │ └── tailwind.css └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/.envrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @auguwu 2 | -------------------------------------------------------------------------------- /.github/workflows/Deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/.github/workflows/Deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/ESLint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/.github/workflows/ESLint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/astro.config.ts -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/bun.lock -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/eslint.config.js -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/flake.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/package.json -------------------------------------------------------------------------------- /public/avatars/furry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/public/avatars/furry.jpg -------------------------------------------------------------------------------- /public/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/public/bg.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/public/robots.txt -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/renovate.json -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auguwu/coming-soon/HEAD/tsconfig.json --------------------------------------------------------------------------------