Skip to content

Herish1605/Next-tier-Task

Repository files navigation

React + Vite + Tailwind CSS Project

A modern React-based project utilizing the latest frontend technologies and tools for building responsive web applications.

🚀 Features

  • React 19 - React version with improved rendering and concurrent features
  • Vite - Lightning-fast build tool and development server
  • TailwindCSS - Utility-first CSS framework with extensive customization
  • React Router - Declarative routing for React applications

🛠️ Installation

  1. Install dependencies:

npm install

  1. Start the server:

npm run dev

📁 Project Structure

/
├── public/              # Static assets
├── src/
│   ├── components/      # Reusable UI components
│   ├── pages/           # Page components
│   ├── styles/          # Global styles and Tailwind configuration
│   ├── App.jsx          # Main application component
│   ├── main.jsx         # Application entry point
│   └── Routes.jsx       # Application routes
├── index.html           # HTML template
├── package.json         # Project dependencies and scripts
├── postcss.config.js    # PostCSS configuration for Tailwind
├── tailwind.config.js   # Tailwind CSS configuration
├── vite.config.js       # Vite configuration

🧩 Adding Routes

To add new routes to the application, update the Routes.jsx file:

import React from 'react';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';

// Import page components
import HomePage from "./pages/HomePage";
import AboutPage from "./pages/AboutPage";

const AppRoutes = () => {
  return (
    <Router>
      <Routes>
        <Route path="/" element={<HomePage />} />
        
      </Routes>
    </Router>
  );
};

export default AppRoutes;

🎨 Styling

This project uses Tailwind CSS for styling. The configuration includes:

  • Utility-first approach for rapid development
  • Custom theme configuration
  • Responsive design utilities
  • PostCSS and Autoprefixer integration

📦 Deployment

Build the application for production:

npm run build

Acknowledgments

  • Powered by React and Vite
  • Styled with Tailwind CSS

NextTier_Task

NextTier_Task

About

WORK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors