├── .github ├── actions │ └── setup-node │ │ └── action.yml └── workflows │ ├── checks.yml │ ├── format.yml │ └── update-dependencies.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── templates ├── studio-template-blog │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── README.md │ ├── assets │ │ ├── lipsum.md │ │ └── markdown-style-guide.md │ ├── astro.config.mjs │ ├── db │ │ ├── config.ts │ │ └── seed.ts │ ├── package.json │ ├── public │ │ ├── blog-placeholder-1.jpg │ │ ├── blog-placeholder-2.jpg │ │ ├── blog-placeholder-3.jpg │ │ ├── blog-placeholder-4.jpg │ │ ├── blog-placeholder-5.jpg │ │ ├── blog-placeholder-about.jpg │ │ ├── favicon.svg │ │ └── fonts │ │ │ ├── atkinson-bold.woff │ │ │ └── atkinson-regular.woff │ ├── src │ │ ├── components │ │ │ ├── BaseHead.astro │ │ │ ├── Footer.astro │ │ │ ├── FormattedDate.astro │ │ │ ├── Header.astro │ │ │ └── HeaderLink.astro │ │ ├── consts.ts │ │ ├── env.d.ts │ │ ├── layouts │ │ │ └── BlogPost.astro │ │ ├── pages │ │ │ ├── about.astro │ │ │ ├── blog │ │ │ │ ├── [...slug].astro │ │ │ │ └── index.astro │ │ │ ├── index.astro │ │ │ └── rss.xml.ts │ │ └── styles │ │ │ └── global.css │ └── tsconfig.json ├── studio-template-empty │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── README.md │ ├── astro.config.mjs │ ├── db │ │ ├── config.ts │ │ └── seed.ts │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── env.d.ts │ │ └── pages │ │ │ └── index.astro │ └── tsconfig.json ├── studio-template-jobboard │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── README.md │ ├── astro.config.ts │ ├── biome.json │ ├── db │ │ ├── config.ts │ │ └── seed.ts │ ├── package.json │ ├── public │ │ ├── bg-header.svg │ │ ├── favicon.svg │ │ └── logos │ │ │ ├── astro.png │ │ │ └── slack.png │ ├── src │ │ ├── assets │ │ │ ├── Discord.astro │ │ │ ├── GitHub.astro │ │ │ ├── Mastodon.astro │ │ │ └── x.astro │ │ ├── components │ │ │ ├── Badge.astro │ │ │ ├── Footer.astro │ │ │ ├── FormFilter.astro │ │ │ ├── Header.astro │ │ │ ├── JobCard.astro │ │ │ ├── JobList.astro │ │ │ ├── JobListHeader.astro │ │ │ ├── LocationBadge.astro │ │ │ ├── SortForm.astro │ │ │ ├── TypeBadge.astro │ │ │ └── filter │ │ │ │ ├── Keyword.astro │ │ │ │ ├── Location.astro │ │ │ │ └── Type.astro │ │ ├── env.d.ts │ │ ├── layouts │ │ │ └── Default.astro │ │ ├── pages │ │ │ ├── 404.astro │ │ │ ├── index.astro │ │ │ └── jobs │ │ │ │ ├── [...slug].astro │ │ │ │ └── index.astro │ │ └── styles │ │ │ └── global.css │ ├── tailwind.config.ts │ └── tsconfig.json └── studio-template-waitlist │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ └── launch.json │ ├── README.md │ ├── astro.config.ts │ ├── db │ ├── config.ts │ └── seed.ts │ ├── package.json │ ├── public │ ├── favicon.svg │ └── phone.webp │ ├── src │ ├── assets │ │ ├── BigCheck.astro │ │ ├── Discord.astro │ │ ├── GitHub.astro │ │ ├── Mastodon.astro │ │ ├── logo.astro │ │ └── x.astro │ ├── components │ │ ├── Footer.astro │ │ ├── Header.astro │ │ └── Logo.astro │ ├── env.d.ts │ ├── layouts │ │ └── Default.astro │ ├── pages │ │ ├── index.astro │ │ ├── signups.astro │ │ └── success.astro │ └── styles │ │ └── global.css │ ├── tailwind.config.mjs │ └── tsconfig.json └── test └── test.js /.github/actions/setup-node/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/.github/actions/setup-node/action.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/update-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/.github/workflows/update-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | .astro 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - templates/* 3 | -------------------------------------------------------------------------------- /templates/studio-template-blog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/.gitignore -------------------------------------------------------------------------------- /templates/studio-template-blog/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/.vscode/extensions.json -------------------------------------------------------------------------------- /templates/studio-template-blog/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/.vscode/launch.json -------------------------------------------------------------------------------- /templates/studio-template-blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/README.md -------------------------------------------------------------------------------- /templates/studio-template-blog/assets/lipsum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/assets/lipsum.md -------------------------------------------------------------------------------- /templates/studio-template-blog/assets/markdown-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/assets/markdown-style-guide.md -------------------------------------------------------------------------------- /templates/studio-template-blog/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/astro.config.mjs -------------------------------------------------------------------------------- /templates/studio-template-blog/db/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/db/config.ts -------------------------------------------------------------------------------- /templates/studio-template-blog/db/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/db/seed.ts -------------------------------------------------------------------------------- /templates/studio-template-blog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/package.json -------------------------------------------------------------------------------- /templates/studio-template-blog/public/blog-placeholder-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/blog-placeholder-1.jpg -------------------------------------------------------------------------------- /templates/studio-template-blog/public/blog-placeholder-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/blog-placeholder-2.jpg -------------------------------------------------------------------------------- /templates/studio-template-blog/public/blog-placeholder-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/blog-placeholder-3.jpg -------------------------------------------------------------------------------- /templates/studio-template-blog/public/blog-placeholder-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/blog-placeholder-4.jpg -------------------------------------------------------------------------------- /templates/studio-template-blog/public/blog-placeholder-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/blog-placeholder-5.jpg -------------------------------------------------------------------------------- /templates/studio-template-blog/public/blog-placeholder-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/blog-placeholder-about.jpg -------------------------------------------------------------------------------- /templates/studio-template-blog/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/favicon.svg -------------------------------------------------------------------------------- /templates/studio-template-blog/public/fonts/atkinson-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/fonts/atkinson-bold.woff -------------------------------------------------------------------------------- /templates/studio-template-blog/public/fonts/atkinson-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/public/fonts/atkinson-regular.woff -------------------------------------------------------------------------------- /templates/studio-template-blog/src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/components/BaseHead.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/components/Footer.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/components/FormattedDate.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/components/FormattedDate.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/components/Header.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/components/HeaderLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/components/HeaderLink.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/consts.ts -------------------------------------------------------------------------------- /templates/studio-template-blog/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/env.d.ts -------------------------------------------------------------------------------- /templates/studio-template-blog/src/layouts/BlogPost.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/layouts/BlogPost.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/pages/about.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/pages/blog/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/pages/blog/[...slug].astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/pages/blog/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/pages/blog/index.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/pages/index.astro -------------------------------------------------------------------------------- /templates/studio-template-blog/src/pages/rss.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/pages/rss.xml.ts -------------------------------------------------------------------------------- /templates/studio-template-blog/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/src/styles/global.css -------------------------------------------------------------------------------- /templates/studio-template-blog/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-blog/tsconfig.json -------------------------------------------------------------------------------- /templates/studio-template-empty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/.gitignore -------------------------------------------------------------------------------- /templates/studio-template-empty/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/.vscode/extensions.json -------------------------------------------------------------------------------- /templates/studio-template-empty/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/.vscode/launch.json -------------------------------------------------------------------------------- /templates/studio-template-empty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/README.md -------------------------------------------------------------------------------- /templates/studio-template-empty/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/astro.config.mjs -------------------------------------------------------------------------------- /templates/studio-template-empty/db/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/db/config.ts -------------------------------------------------------------------------------- /templates/studio-template-empty/db/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/db/seed.ts -------------------------------------------------------------------------------- /templates/studio-template-empty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/package.json -------------------------------------------------------------------------------- /templates/studio-template-empty/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/public/favicon.svg -------------------------------------------------------------------------------- /templates/studio-template-empty/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/src/env.d.ts -------------------------------------------------------------------------------- /templates/studio-template-empty/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-empty/src/pages/index.astro -------------------------------------------------------------------------------- /templates/studio-template-empty/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } 4 | -------------------------------------------------------------------------------- /templates/studio-template-jobboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/.gitignore -------------------------------------------------------------------------------- /templates/studio-template-jobboard/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/.vscode/extensions.json -------------------------------------------------------------------------------- /templates/studio-template-jobboard/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/.vscode/launch.json -------------------------------------------------------------------------------- /templates/studio-template-jobboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/README.md -------------------------------------------------------------------------------- /templates/studio-template-jobboard/astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/astro.config.ts -------------------------------------------------------------------------------- /templates/studio-template-jobboard/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/biome.json -------------------------------------------------------------------------------- /templates/studio-template-jobboard/db/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/db/config.ts -------------------------------------------------------------------------------- /templates/studio-template-jobboard/db/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/db/seed.ts -------------------------------------------------------------------------------- /templates/studio-template-jobboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/package.json -------------------------------------------------------------------------------- /templates/studio-template-jobboard/public/bg-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/public/bg-header.svg -------------------------------------------------------------------------------- /templates/studio-template-jobboard/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/public/favicon.svg -------------------------------------------------------------------------------- /templates/studio-template-jobboard/public/logos/astro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/public/logos/astro.png -------------------------------------------------------------------------------- /templates/studio-template-jobboard/public/logos/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/public/logos/slack.png -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/assets/Discord.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/assets/Discord.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/assets/GitHub.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/assets/GitHub.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/assets/Mastodon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/assets/Mastodon.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/assets/x.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/assets/x.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/Badge.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/Badge.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/Footer.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/FormFilter.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/FormFilter.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/Header.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/JobCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/JobCard.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/JobList.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/JobList.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/JobListHeader.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/JobListHeader.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/LocationBadge.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/LocationBadge.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/SortForm.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/SortForm.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/TypeBadge.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/TypeBadge.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/filter/Keyword.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/filter/Keyword.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/filter/Location.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/filter/Location.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/components/filter/Type.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/components/filter/Type.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/env.d.ts -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/layouts/Default.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/layouts/Default.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/pages/404.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/pages/index.astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/pages/jobs/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/pages/jobs/[...slug].astro -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/pages/jobs/index.astro: -------------------------------------------------------------------------------- 1 | --- 2 | return Astro.redirect('/', 301); 3 | --- 4 | -------------------------------------------------------------------------------- /templates/studio-template-jobboard/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/src/styles/global.css -------------------------------------------------------------------------------- /templates/studio-template-jobboard/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/tailwind.config.ts -------------------------------------------------------------------------------- /templates/studio-template-jobboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-jobboard/tsconfig.json -------------------------------------------------------------------------------- /templates/studio-template-waitlist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/.gitignore -------------------------------------------------------------------------------- /templates/studio-template-waitlist/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/.vscode/extensions.json -------------------------------------------------------------------------------- /templates/studio-template-waitlist/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/.vscode/launch.json -------------------------------------------------------------------------------- /templates/studio-template-waitlist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/README.md -------------------------------------------------------------------------------- /templates/studio-template-waitlist/astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/astro.config.ts -------------------------------------------------------------------------------- /templates/studio-template-waitlist/db/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/db/config.ts -------------------------------------------------------------------------------- /templates/studio-template-waitlist/db/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/db/seed.ts -------------------------------------------------------------------------------- /templates/studio-template-waitlist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/package.json -------------------------------------------------------------------------------- /templates/studio-template-waitlist/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/public/favicon.svg -------------------------------------------------------------------------------- /templates/studio-template-waitlist/public/phone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/public/phone.webp -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/assets/BigCheck.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/assets/BigCheck.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/assets/Discord.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/assets/Discord.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/assets/GitHub.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/assets/GitHub.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/assets/Mastodon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/assets/Mastodon.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/assets/logo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/assets/logo.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/assets/x.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/assets/x.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/components/Footer.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/components/Header.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/components/Logo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/components/Logo.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/env.d.ts -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/layouts/Default.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/layouts/Default.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/pages/index.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/pages/signups.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/pages/signups.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/pages/success.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/pages/success.astro -------------------------------------------------------------------------------- /templates/studio-template-waitlist/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/src/styles/global.css -------------------------------------------------------------------------------- /templates/studio-template-waitlist/tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/tailwind.config.mjs -------------------------------------------------------------------------------- /templates/studio-template-waitlist/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/templates/studio-template-waitlist/tsconfig.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/studio-templates/HEAD/test/test.js --------------------------------------------------------------------------------