An open API service indexing awesome lists of open source software.

https://github.com/ingsystemcix/portafolio

My portfolio, created in Astro, showcases my skills and projects in a sleek, modern format. Explore my work and achievements, all presented with a responsive and visually appealing design that highlights my expertise and creativity.
https://github.com/ingsystemcix/portafolio

Last synced: 10 months ago
JSON representation

My portfolio, created in Astro, showcases my skills and projects in a sleek, modern format. Explore my work and achievements, all presented with a responsive and visually appealing design that highlights my expertise and creativity.

Awesome Lists containing this project

README

          

# Astro Starter Kit: Minimal

```sh
npm create astro@latest -- --template minimal
```

Inside of your Astro project, you'll see the following folders and files:

```text
└── πŸ“IngSystemCix_portfolio
└── πŸ“.astro
└── settings.json
└── .gitignore
└── πŸ“.vscode
└── extensions.json
└── launch.json
└── astro.config.mjs
└── package-lock.json
└── package.json
└── postcss.config.js
└── πŸ“public
└── favicon.svg
β”œβ”€β”€ img
└── README.md
└── πŸ“src
└── πŸ“components
└── Header.astro
└── env.d.ts
└── πŸ“layouts
└── Layout.astro
└── πŸ“pages
└── index.astro
└── πŸ“styles
└── base.css
└── tailwind.config.mjs
└── tsconfig.json
```

Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.

There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the `public/` directory.

## 🧞 Commands

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |

## πŸ‘€ Want to learn more?

Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).