- Next.js App Router
- Typescript
- Optimized for SEO using Next.js's Metadata
- Optimized for Core Web Vitals
- Styling with Tailwind CSS + shadcn/ui
- React Server Components (RSCs) and Suspense
- New fetching and caching paradigms
Each folder represents a route segment that is mapped to a corresponding segment in a URL path.
pokedex
├── app
│ ├── error.tsx
│ ├── favicon.ico
│ ├── globals.css
│ ├── layout.tsx
│ ├── page.tsx
│ └── pokemon-detail
│ └── [slug]
│ └── page.tsx
├── components
│ ├── detail
│ │ └── detail-content.tsx
│ ├── list
│ │ ├── poke-card.tsx
│ │ ├── poke-list.tsx
│ │ └── poke-search.tsx
│ ├── shared
│ │ ├── pagination-wrapper.tsx
│ │ └── skeletons.tsx
│ └── ui
│ ├── badge.tsx
│ ├── button.tsx
│ ├── card.tsx
│ ├── pagination.tsx
│ ├── progress.tsx
│ ├── separator.tsx
│ └── skeleton.tsx
├── components.json
├── lib
│ ├── data.ts
│ ├── definitions.ts
│ └── utils.ts
Core Web Vitals (LCP, FID, CLS) are key metrics assessing webpage loading speed, interactivity, and visual stability, crucial for user satisfaction and search rankings. Optimizing them enhances website performance and visibility.
What was done in application?
- Image Optimization for LCP
- Used Skeletons of components for CLS
- ...
Page speed report: page-speed.dev
You can contact me via enesergun1515@gmail.com or through LinkedIn to provide feedback on the project.