A website for generating trip itineraries and finding trips to go on.
Trip-Tailor/
├── app/ # Next.js app directory (pages and layouts)
│ ├── layout.tsx # Root layout
│ ├── page.tsx # Home page
│ └── globals.css # Global styles
├── backend/ # Flask backend API
│ ├── app/
│ ├── requirements.txt
│ └── run.py
├── frontend/ # (Reserved for future organization)
├── package.json # Next.js dependencies
├── next.config.js # Next.js configuration
├── tailwind.config.js # Tailwind CSS configuration
├── tsconfig.json # TypeScript configuration
└── postcss.config.js # PostCSS configuration
- Install dependencies:
npm install- Run the development server:
npm run dev- Open http://localhost:3000 in your browser.
See backend/README.md for backend setup instructions.