A minimal frontend starter template built with React & Next.js. This template provides a clean foundation for quickly starting new applications.
Copy the frontend-template directory to start your new project:
-
Go into the frontend folder Open a terminal and go to the location where
frontend-templatewas copied to -
Build & Run Container
sh docker-shell.shnpm installnpm run devYour app will be running at http://localhost:3001
frontend-template/
├── src/
│ ├── app/
│ │ ├── layout.jsx # Root layout with header/footer
│ │ ├── page.jsx # Homepage
│ │ ├── globals.css # Global styles and design tokens
│ │ └── not-found.jsx # 404 page
│ ├── components/
│ │ ├── layout/
│ │ │ ├── Header.jsx # Main navigation
│ │ │ ├── Footer.jsx # Footer component
│ │ │ └── ThemeToggle.jsx # Dark mode toggle
│ │ └── ui/ # shadcn/ui components
│ │ ├── button.jsx
│ │ ├── card.jsx
│ │ ├── input.jsx
│ │ └── ...
│ └── lib/
│ ├── Common.js # Utility functions
│ ├── DataService.js # API service layer
│ ├── SampleData.js # Mock data for testing
│ └── utils.js # shadcn/ui utilities
├── public/
│ └── assets/ # Static assets (logos, images)
├── components.json # shadcn/ui configuration
├── tailwind.config.js # Tailwind configuration
├── next.config.js # Next.js configuration
├── package.json # Dependencies
├── Dockerfile # Production Docker image
└── Dockerfile.dev # Development Docker image
Look in App-TaskFlowPro.md
Look in App-PropertyFinder.md
Look in App-StockAnalyzer.md
Look in App-AgentChat.md