-
Notifications
You must be signed in to change notification settings - Fork 0
Release 2026-03-14 #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
363e8a9
feat: add CLAUDE.md for project guidance and commands
Axeloooo f0d8811
feat: add Cross-Chain Rebase Token project details and image to resume
Axeloooo 258ef22
feat: add AGENTS.md for AI guidance and project commands
Axeloooo 282d863
feat: enhance README with tech stack, commands, and additional badges
Axeloooo 7a50144
Potential fix for pull request finding
Axeloooo fe2e7a5
Merge pull request #13 from Axeloooo/feature/add-cross-chain-rebase-t…
Axeloooo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # AGENTS.md | ||
|
|
||
| This file provides guidance to AI Agents when working with code in this repository. | ||
|
|
||
| ## Commands | ||
|
|
||
| ```bash | ||
| npm run dev # Start development server | ||
| npm run build # Build for production | ||
| npm run lint # Run ESLint | ||
| npm run start # Start production server | ||
| ``` | ||
|
|
||
| No test suite is configured. | ||
|
|
||
| ## Architecture | ||
|
|
||
| This is a **Next.js 14 App Router** portfolio site built with TypeScript, Tailwind CSS, and shadcn/ui. | ||
|
|
||
| ### Content Data Layer | ||
|
|
||
| All portfolio content lives in a single file: `src/data/resume.tsx`. This exports a `DATA` object containing personal info, work experience, education, skills, projects, and social links. **This is the primary file to edit when updating portfolio content.** | ||
|
|
||
| ### Page Structure | ||
|
|
||
| - `src/app/page.tsx` — Home page assembling all portfolio sections (hero, work, education, projects, skills, contact) | ||
| - `src/app/blog/page.tsx` — Blog listing | ||
| - `src/app/blog/[slug]/page.tsx` — Individual blog posts rendered from MDX | ||
| - `src/app/layout.tsx` — Root layout with theme providers and analytics | ||
|
|
||
| ### Blog System | ||
|
|
||
| Blog posts are `.mdx` files in `content/`. The `src/data/blog.ts` utility handles parsing frontmatter (via `gray-matter`) and converting markdown to HTML using a remark/rehype pipeline with `rehype-pretty-code` (Shiki) for syntax highlighting. | ||
|
|
||
| ### Component Layers | ||
|
|
||
| - `src/components/ui/` — shadcn/ui primitives (do not edit directly; regenerate via shadcn CLI) | ||
| - `src/components/magicui/` — Custom animation components (`BlurFade`, `BlurFadeText`, `Dock`) | ||
| - `src/components/` — Feature components (`ProjectCard`, `ResumeCard`, `HackathonCard`, etc.) | ||
|
|
||
| ### Styling | ||
|
|
||
| - Tailwind CSS with HSL CSS variables for theming (defined in `src/app/globals.css`) | ||
| - Dark mode via `class` strategy with `next-themes` | ||
| - Theme-aware favicons handled by `src/components/favicon-switcher.tsx` | ||
|
|
||
| ### Path Alias | ||
|
|
||
| `@/*` maps to `src/*` — use this for all internal imports. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # CLAUDE.md | ||
|
|
||
| This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. | ||
|
|
||
| ## Commands | ||
|
|
||
| ```bash | ||
| npm run dev # Start development server | ||
| npm run build # Build for production | ||
| npm run lint # Run ESLint | ||
| npm run start # Start production server | ||
| ``` | ||
|
|
||
| No test suite is configured. | ||
|
|
||
| ## Architecture | ||
|
|
||
| This is a **Next.js 14 App Router** portfolio site built with TypeScript, Tailwind CSS, and shadcn/ui. | ||
|
|
||
| ### Content Data Layer | ||
|
|
||
| All portfolio content lives in a single file: `src/data/resume.tsx`. This exports a `DATA` object containing personal info, work experience, education, skills, projects, and social links. **This is the primary file to edit when updating portfolio content.** | ||
|
|
||
| ### Page Structure | ||
|
|
||
| - `src/app/page.tsx` — Home page assembling all portfolio sections (hero, work, education, projects, skills, contact) | ||
| - `src/app/blog/page.tsx` — Blog listing | ||
| - `src/app/blog/[slug]/page.tsx` — Individual blog posts rendered from MDX | ||
| - `src/app/layout.tsx` — Root layout with theme providers and analytics | ||
|
|
||
| ### Blog System | ||
|
|
||
| Blog posts are `.mdx` files in `content/`. The `src/data/blog.ts` utility handles parsing frontmatter (via `gray-matter`) and converting markdown to HTML using a remark/rehype pipeline with `rehype-pretty-code` (Shiki) for syntax highlighting. | ||
|
|
||
| ### Component Layers | ||
|
|
||
| - `src/components/ui/` — shadcn/ui primitives (do not edit directly; regenerate via shadcn CLI) | ||
| - `src/components/magicui/` — Custom animation components (`BlurFade`, `BlurFadeText`, `Dock`) | ||
| - `src/components/` — Feature components (`ProjectCard`, `ResumeCard`, `HackathonCard`, etc.) | ||
|
|
||
| ### Styling | ||
|
|
||
| - Tailwind CSS with HSL CSS variables for theming (defined in `src/app/globals.css`) | ||
| - Dark mode via `class` strategy with `next-themes` | ||
| - Theme-aware favicons handled by `src/components/favicon-switcher.tsx` | ||
|
|
||
| ### Path Alias | ||
|
|
||
| `@/*` maps to `src/*` — use this for all internal imports. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,55 @@ | ||
| # Portfolio | ||
|
|
||
| [](https://github.com/Axeloooo/Portfolio/actions/workflows/ci.yml) | ||
| [](https://github.com/Axeloooo/Portfolio/actions/workflows/release.yml) | ||
| [](https://github.com/Axeloooo/Portfolio/tags) | ||
| [](https://github.com/Axeloooo/Portfolio/issues) | ||
| [](https://github.com/Axeloooo/Portfolio/pulls) | ||
| [](https://github.com/Axeloooo/Portfolio/graphs/contributors) | ||
| [](https://github.com/Axeloooo/Portfolio) | ||
| [](LICENSE) | ||
|
|
||
| My personal portfolio website built with Next.js, showcasing my work experience, projects, skills, and blog. | ||
|
|
||
| ## Table of Contents | ||
|
|
||
| - [Tech Stack](#tech-stack) | ||
| - [Getting Started](#getting-started) | ||
| - [Commands](#commands) | ||
| - [License](#license) | ||
|
|
||
| ## Tech Stack | ||
|
|
||
| | Category | Technology | | ||
| | -------------- | --------------------------------------- | | ||
| | Framework | Next.js 14 (App Router) | | ||
| | Language | TypeScript 5 | | ||
| | Styling | Tailwind CSS, shadcn/ui | | ||
| | Animations | Framer Motion | | ||
| | Content | MDX (blog posts) | | ||
| | Analytics | Vercel Analytics & Speed Insights | | ||
| | CI/CD | GitHub Actions, Semantic Release | | ||
|
|
||
| ## Getting Started | ||
|
|
||
| **Prerequisites:** Node.js LTS | ||
|
|
||
| ```bash | ||
| npm install | ||
| npm run dev | ||
| ``` | ||
|
|
||
| The development server starts at `http://localhost:3000`. | ||
|
|
||
| ## Commands | ||
|
|
||
| | Command | Description | | ||
| | ----------------- | ---------------------------- | | ||
| | `npm run dev` | Start development server | | ||
| | `npm run build` | Build for production | | ||
| | `npm run start` | Start production server | | ||
| | `npm run lint` | Run ESLint | | ||
|
|
||
| ## License | ||
|
|
||
| Licensed under the [Apache License, Version 2.0](LICENSE). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.