Welcome to my personal portfolio website!
This project was built from scratch leveraging AI (DeepMind tools and Claude Code) to experiment with rapid prototyping, modern frontend design aesthetics (Next.js, Tailwind, Canvas animations), and completely data-driven architectures.
The site is deployed and available at: https://chirathr.com/
npm install
npm run dev(Locally, the site will run on http://localhost:3000)
All portfolio content is perfectly isolated from the UI code. To update my information, I just edit:
src/data/portfolio.ts
The blog is statically powered by an internal Markdown engine (remark + gray-matter). To write a new post:
- Create a new
.mdfile in thesrc/content/blog/directory. - Add the following YAML frontmatter precisely to the very top of the file:
---
title: "Your Post Title Here"
date: "2026-03-01"
readTime: "5 min read"
---- Write standard Markdown below the frontmatter block! The site will automatically process your post, add it to the homepage feed, and generate a highly styled
/blog/your-post-filenameroute.
The project is configured for a static export and deploys directly to GitHub Pages via the included GitHub Action.