A modern, responsive e-commerce application built with Next.js 14 and TypeScript, demonstrating React best practices, modern design patterns, and efficient state management.
- Responsive design (mobile-first approach)
- Product filtering and search
- Shopping cart with persistent storage
- Category-based navigation
- Product details with image gallery
- Dynamic pagination
- Smooth animations and transitions
- Framework: Next.js 14 (App Router)
- Language: TypeScript
- Styling: TailwindCSS
- State Management: Redux Toolkit + IndexedDB (in progress...) for persistence
- UI Components: shadcn/ui (Radix UI primitives)
- Animations: Framer Motion
- HTTP Client: Axios
- Data Source: DummyJSON API
src/
├── 📱 app/ # Next.js app router pages
├── 🧩 components/ # Reusable UI components
│ ├── layout/ # Navbar and Footer components
│ ├── sections/ # Page-specific sections
│ ├── ui/ # Base UI components (shadcn)
│ └── ui-build/ # UI block components (built with or without shadcn)
├── ✴️ constants/ # Constant values used
├── 🎣 hooks/ # Custom React hooks
├── 🛠️ lib/ # Utility functions and configurations from dependencies
├── 🔄 provider/ # React context providers
│ ├── filter-context/ # Filter Provider built using ContextAPI
│ └── redux/ # Redux Provider built using redux and it's toolkit
├── 🏪 store/ # Redux store setup and slices
│ ├── features/ # Redux slices and reducers
│ ├── hooks/ # Redux hooks
│ └── middleware/ # Custom Redux middleware
├── 🖼️ svgs/ # JSX SVG components
├── 🔧 utils/ # Custom Utility functions
└── 📝 types/ # TypeScript type definitions
- Custom hooks for reusable logic (useCart, useProducts, useSearch)
- Context API for feature-specific state (FilterContext)
- Compound Components for complex UI elements
- Render Props for component composition
- Higher Order Components for shared functionality
- Redux Toolkit for global state management
- IndexedDB for cart persistence
- Context API for localized state
- URL-based state for shareable filters and pagination
- Atomic Design principles
- Composition over inheritance
- Single Responsibility Principle
- Controlled vs Uncontrolled components
- Error Boundaries for fallback UI
- Image optimization with Next.js Image component
- Dynamic imports for code splitting
- Memoization of expensive computations
- Debounced search functionality
- IndexedDB for offline capabilities
- Proper key usage in lists for efficient rendering
- Mobile-first approach
- Fluid typography and spacing
- Responsive images and grids
- Touch-friendly interactions
- Adaptive layouts using Tailwind breakpoints
- Clone the repository:
git clone https://github.com/AJ1732/shop.co.git
- Install dependencies:
cd shop.co
npm install
- Run the development server:
npm run dev
This project implements the E-commerce Website Template from Figma Community.
Package | Version | Description |
---|---|---|
next |
^14.2.5 | React framework |
react |
^18.0.0 | JavaScript library |
typescript |
^5.0.0 | Type system |
@reduxjs/toolkit |
^2.5.0 | State management |
tailwindcss |
^3.4.1 | CSS framework |
Package | Version | Description |
---|---|---|
@radix-ui/* |
^1.0.0 | UI primitives |
shadcn/ui |
latest | Component library |
framer-motion |
^11.15.0 | Animation library |
lucide-react |
^0.426.0 | Icon library |
Package | Version | Description |
---|---|---|
axios |
^1.7.9 | HTTP client |
class-variance-authority |
^0.7.0 | CSS-in-JS utilities |
clsx |
^2.1.1 | Class names utility |
tailwind-merge |
^2.4.0 | Tailwind class merger |
- Implement checkout process
- Implement user profiles