Personal portfolio site for Beyaricko Degu — Engineer · Builder · Strategist.
- Dark cyberpunk aesthetic with scanline overlay and animated grid background
- Cursor-following glow effect
- Typewriter role animation
- Scroll-triggered reveal animations via IntersectionObserver
- Mobile-responsive layout with hamburger navigation
- Skills, Services, Portfolio, Blog, and Contact sections
- Zero frameworks — pure HTML, CSS, and vanilla JavaScript
portfolio/
├── index.html # Markup only — no embedded styles or scripts
├── assets/
│ ├── css/
│ │ └── style.css # All styles, variables, animations, responsive rules
│ └── js/
│ └── main.js # Typewriter, scroll reveal, hamburger, form feedback
├── resume.pdf # CV download (add your own)
└── README.md
No build step needed. Just open index.html in a browser:
# Clone the repo
git clone https://github.com/jerichoNega/portfolio.git
cd portfolio
# Open directly
open index.html # macOS
start index.html # Windows
xdg-open index.html # Linux- No framework — keeps the repo approachable and load time near-zero
- CSS custom properties — all colours and tokens in
:rootfor easy theming - IntersectionObserver — performant scroll reveal without scroll event listeners
deferon scripts — JS loads after HTML parse, no render blocking
- Wire blog articles to real content
- Add live demo link for AI Content Engine
- Connect contact form to a backend or Formspree
- Add Open Graph image for social previews