{"id":15111991,"url":"https://github.com/sofidevo/template-astro-portfolio-sass","last_synced_at":"2026-02-01T16:36:30.758Z","repository":{"id":200081194,"uuid":"704411977","full_name":"SofiDevO/template-astro-portfolio-sass","owner":"SofiDevO","description":"Template para portafolio hecha con Astro y SASS ","archived":false,"fork":false,"pushed_at":"2024-08-08T22:30:49.000Z","size":4356,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"sofidev","last_synced_at":"2024-10-10T15:22:24.744Z","etag":null,"topics":["astrojs","react","sass-framework"],"latest_commit_sha":null,"homepage":"https://template-astro-portfolio-sass.vercel.app","language":"Astro","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/SofiDevO.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"SofiDevO","patreon":null,"open_collective":null,"ko_fi":"sofidev","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2023-10-13T07:49:49.000Z","updated_at":"2024-08-08T22:30:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"ac93c987-452c-4cb1-beaf-2c096d4dbb45","html_url":"https://github.com/SofiDevO/template-astro-portfolio-sass","commit_stats":null,"previous_names":["sofidevo/portfoli-sofidev-astro","sofidevo/template-astro-portfolio","sofidevo/template-astro-portfolio.github.io"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/SofiDevO/template-astro-portfolio-sass","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SofiDevO%2Ftemplate-astro-portfolio-sass","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SofiDevO%2Ftemplate-astro-portfolio-sass/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SofiDevO%2Ftemplate-astro-portfolio-sass/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SofiDevO%2Ftemplate-astro-portfolio-sass/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SofiDevO","download_url":"https://codeload.github.com/SofiDevO/template-astro-portfolio-sass/tar.gz/refs/heads/sofidev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SofiDevO%2Ftemplate-astro-portfolio-sass/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259934814,"owners_count":22934330,"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":["astrojs","react","sass-framework"],"created_at":"2024-09-26T00:40:46.933Z","updated_at":"2026-02-01T16:36:30.712Z","avatar_url":"https://github.com/SofiDevO.png","language":"Astro","funding_links":["https://github.com/sponsors/SofiDevO","https://ko-fi.com/sofidev"],"categories":[],"sub_categories":[],"readme":"# Astro Starter Kit: Basics\n\n```sh\nnpm create astro@latest -- --template basics\n```\n\n[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)\n[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)\n[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)\n\n\u003e 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!\n\n![just-the-basics](https://github.com/withastro/astro/assets/2244813/a0a5533c-a856-4198-8470-2d67b1d7c554)\n\n## 🚀 Project Structure\n\nInside of your Astro project, you'll see the following folders and files:\n\n```text\n/\n├── public/\n│   └── favicon.svg\n├── src/\n│   ├── components/\n│   │   └── Card.astro\n│   ├── layouts/\n│   │   └── Layout.astro\n│   └── pages/\n│       └── index.astro\n└── package.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| `npm install`             | Installs dependencies                            |\n| `npm run dev`             | Starts local dev server at `localhost:4321`      |\n| `npm run build`           | Build your production site to `./dist/`          |\n| `npm run preview`         | Preview your build locally, before deploying     |\n| `npm run astro ...`       | Run CLI commands like `astro add`, `astro check` |\n| `npm run astro -- --help` | Get help using the Astro CLI                     |\n\n## 👀 Want to learn more?\n\nFeel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsofidevo%2Ftemplate-astro-portfolio-sass","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsofidevo%2Ftemplate-astro-portfolio-sass","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsofidevo%2Ftemplate-astro-portfolio-sass/lists"}