An open API service indexing awesome lists of open source software.

https://github.com/devnadeemashraf/portfolio

Portfolio built with NextJS and shadcn/ui
https://github.com/devnadeemashraf/portfolio

formspree nextjs portfolio-website shadcn-ui

Last synced: about 2 months ago
JSON representation

Portfolio built with NextJS and shadcn/ui

Awesome Lists containing this project

README

          

# Nadeem Ashraf - Developer Portfolio

A Portfolio Website built with Next.js 15 and TypeScript. This project showcases my skills, projects, and experience in a clean and modern design.

## Folder Structure

```
src/
├── app/ # App router pages and layouts
│ ├── api/ # API route handlers
│ ├── (routes)/ # Route groups (e.g., blog, projects)
│ ├── layout.tsx # Root layout
│ └── page.tsx # Home page
├── components/ # Reusable UI components
│ ├── common/ # Shared components (buttons, cards, etc.)
│ ├── layout/ # Layout components (header, footer, etc.)
│ └── sections/ # Page-specific sections
├── hooks/ # Custom React hooks
├── lib/ # Utility functions and shared logic
│ ├── api/ # API client code (for LeetCode stats, etc.)
│ └── utils/ # Helper functions
├── styles/ # Global styles and theme configuration
├── types/ # TypeScript type definitions
└── public/ # Static assets (fonts, images, etc.)
```