Live Site - https://triply-hazel.vercel.app/
A modern and minimalistic, responsive landing page built with React, Vite, and Tailwind CSS. This project includes multiple pages, a responsive navigation bar, and a clean, professional design.
- 🚀 Built with React 18 and Vite
- 🎨 Styled with Tailwind CSS
- 📱 Fully responsive design
- 🧭 Client-side routing with React Router
- ⚡ Fast refresh and optimized builds
- 🛠️ Pre-configured with ESLint and Prettier
- Node.js (v14 or later)
- npm or yarn
-
Clone the repository:
git clone <repository-url> cd triply
-
Install dependencies:
npm install # or yarn
npm startoryarn start- Start the development servernpm run buildoryarn build- Build for productionnpm run previeworyarn preview- Preview the production buildnpm run lintoryarn lint- Lint the codenpm run formatoryarn format- Format the code with Prettier
src/
├── assets/ # Static assets (images, fonts, etc.)
├── components/ # Reusable UI components
│ └── layout/ # Layout components (Header, Footer, etc.)
├── pages/ # Page components
├── App.jsx # Main application component
└── main.jsx # Application entry point
This project uses Tailwind CSS for styling. The main styles are defined in src/index.css using Tailwind's @apply directives.
Routing is handled by React Router. The main routes are defined in src/App.jsx.
To create a production build:
npm run build
# or
yarn buildThe build artifacts will be stored in the dist/ directory.
This project is open source and available under the MIT License.