This website was created to host my personal projects and/or open source contributions. Feel free to use and modify it as you see fit.
# Clone repository
git clone https://github.com/arcibyte/arcibyte_website.git
# Install dependencies
npm install
# Start development server
npm run dev
# Open on http://localhost:4321
# Build for production
npm run build├── public/
│ ├── fonts/
│ └── img/
├── src/
│ ├── components/
│ │ ├── Footer.astro
│ │ ├── Home.astro
│ │ ├── Navbar.astro
│ │ └── Projects.astro
│ ├── content/
│ │ ├── blog/
│ │ │ ├── en/
│ │ │ └── es/
│ │ └── config.ts
│ ├── data/
│ │ └── projects.ts
│ ├── helpers/
│ │ └── blog.ts
│ ├── i18n/
│ │ ├── logicNav.ts
│ │ ├── translate.ts
│ │ ├── ui.ts
│ │ └── utils.ts
│ ├── layouts/
│ │ ├── Layout.astro
│ │ └── PostLayout.astro
│ └── pages/
│ ├── [lang]/
│ │ ├── posts/
│ │ │ └── [slug].astro
│ │ ├── blog.astro
│ │ └── index.astro
│ └── index.astro
├── astro.config.mjs
├── tailwind.config.js
└── package.json
This project is licensed under the MIT License - see the LICENSE file for details.
⭐ If you liked this project, give it a star!