{"id":19432768,"url":"https://github.com/pryority/astroplate","last_synced_at":"2026-04-11T01:14:19.396Z","repository":{"id":212815280,"uuid":"732162212","full_name":"Pryority/astroplate","owner":"Pryority","description":"An Astro template that uses shadcn/ui","archived":false,"fork":false,"pushed_at":"2024-01-27T15:13:49.000Z","size":1115,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-07T20:29:09.543Z","etag":null,"topics":["astro","bun","shadcn-ui","tailwindcss","template"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Pryority.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-12-15T19:59:23.000Z","updated_at":"2024-02-06T06:27:09.000Z","dependencies_parsed_at":"2023-12-16T14:45:02.306Z","dependency_job_id":"899acd27-57f7-472e-a571-6428c79a8426","html_url":"https://github.com/Pryority/astroplate","commit_stats":null,"previous_names":["pryority/astroplate"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pryority%2Fastroplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pryority%2Fastroplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pryority%2Fastroplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pryority%2Fastroplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pryority","download_url":"https://codeload.github.com/Pryority/astroplate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240612549,"owners_count":19829027,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["astro","bun","shadcn-ui","tailwindcss","template"],"created_at":"2024-11-10T14:37:02.507Z","updated_at":"2026-04-11T01:14:14.364Z","avatar_url":"https://github.com/Pryority.png","language":"TypeScript","readme":"# Astroplate\n\nAn Astro template that uses shadcn/ui.\n\n![Astroplate Demo Image](./public/astroplate-demo.png)\n![Astroplate iPad Mockup](./public/astroplate-ipad-mockup.png)\n![Astroplate iPhone Mockup](./public/astroplate-iphone-mockup.png)\n\n## 🚀 Project Structure\n\nInside of your Astro project, you'll see the following folders and files:\n\n```text\n/\n├── README.md\n├── astro.config.mjs\n├── bun.lockb\n├── components.json\n├── package.json\n├── public\n│   └── favicon.svg\n├── src\n│   ├── components\n│   │   ├── CartDrawer.tsx\n│   │   ├── ContactCard.tsx\n│   │   ├── Header\n│   │   │   ├── Header.astro\n│   │   │   ├── MenuBar.tsx\n│   │   │   ├── MobileMenuBar.tsx\n│   │   │   ├── ModeToggle.tsx\n│   │   │   └── NavDropdownItem.tsx\n│   │   └── ui\n│   │       ├── accordion.tsx\n│   │       ├── button.tsx\n│   │       ├── card.tsx\n│   │       ├── drawer.tsx\n│   │       ├── dropdown-menu.tsx\n│   │       ├── input.tsx\n│   │       ├── label.tsx\n│   │       ├── navigation-menu.tsx\n│   │       ├── scroll-area.tsx\n│   │       ├── select.tsx\n│   │       ├── sheet.tsx\n│   │       └── textarea.tsx\n│   ├── env.d.ts\n│   ├── layouts\n│   │   ├── PageHeader.astro\n│   │   └── Root.astro\n│   ├── lib\n│   │   ├── constants.ts\n│   │   └── utils.ts\n│   ├── pages\n│   │   ├── about.astro\n│   │   ├── contact.astro\n│   │   ├── index.astro\n│   │   ├── shop\n│   │   │   └── [country].astro\n│   │   └── shop.astro\n│   └── styles\n│       └── globals.css\n├── tailwind.config.mjs\n└── tsconfig.json\n```\n\nAstro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.\n\nThere's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.\n\nAny static assets, like images, can be placed in the `public/` directory.\n\n## 🧞 Commands\n\nAll commands are run from the root of the project, from a terminal:\n\n| Command                       | Action                                           |\n| :---------------------------- | :----------------------------------------------- |\n| `bun install`                 | Installs dependencies                            |\n| `bunx --bun astro dev`        | Starts local dev server at `localhost:4321`      |\n| `bunx --bun astro build`      | Build your production site to `./dist/`          |\n| `bunx --bun astro preview`    | Preview your build locally, before deploying     |\n| `bunx --bun astro`            | Run CLI commands like `astro add`, `astro check` |\n| `bunx --bun astro -- --help`  | Get help using the Astro CLI                     |\n\n## 👀 Want to learn more?\n\nFeel free to check [the Astro documentation](https://docs.astro.build) or jump into the [Astro Discord server](https://astro.build/chat).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpryority%2Fastroplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpryority%2Fastroplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpryority%2Fastroplate/lists"}