Personal portfolio website showcasing AI Engineering, RAG Pipelines, and Data Engineering expertise.
After deploying to GitHub Pages: https://courasneto.github.io/
├── index.html # Main portfolio page (single-file, all CSS included)
└── README.md # This file
-
Clone your existing repo:
git clone https://github.com/courasneto/couras.git cd couras -
Copy the
index.htmlto the repo root -
Push changes:
git add . git commit -m "Add portfolio website" git push
-
Enable GitHub Pages:
- Go to repo Settings → Pages
- Source: Deploy from a branch
- Branch: main / (root)
- Save
-
Access at:
https://courasneto.github.io/couras/
-
Create new repo named exactly
courasneto.github.io -
Push the index.html:
git init git add . git commit -m "Initial portfolio" git branch -M main git remote add origin https://github.com/courasneto/courasneto.github.io.git git push -u origin main
-
Access at:
https://courasneto.github.io/
- Responsive Design — Works on desktop, tablet, and mobile
- Animated Sections — AOS (Animate On Scroll) library
- Single File — All CSS included, no external dependencies (except fonts/icons)
- Dark Sidebar — Fixed navigation menu
- Portfolio Filter — Filter projects by category
- Career Stats — Animated number counters
Edit the :root variables at the top of the <style> section:
:root {
--color-primary: #149ddd; /* Main accent color */
--color-secondary: #f4845f; /* Secondary accent */
--color-bg-dark: #040b14; /* Dark background */
}Replace the initials div with an image:
<!-- Replace this: -->
<div class="initials">RC</div>
<!-- With this: -->
<img src="your-photo.jpg" alt="Profile">Copy a portfolio-item block and modify the content.
Free for personal use. Template inspired by BootstrapMade.
Built with ❤️ by Raimundo Couras