The event has concluded and we received second place.
This website was done for the IETE Chennai website design contest conducted in Tamil Nadu by IETE on 06/09/2023 by the collective effort of Sajay Prakash, Purushothaman and Sanjeev.
- React.js
- Tailwind CSS
Make sure you have npm and pnpm installed.
- Clone this repo
git clone https://github.com/sajayprakash/IETE-Project
- Go into the repo folder using terminal (You can use vscode's integrated terminal)
cd IETE-Project
- Install dependencies
pnpm install
- Run the server
pnpm dev
- Go into the "src" folder and edit the files.
cd src
-
The components folder contains all the components used in the website (Eg: Navbar, Footer).
-
App.jsx contains the main code for the website that will be rendered. It calls the components and renders them. Example:
return ( <> <Navbar /> /* This will render the Navbar component */ <Intro /> /* This will render the Intro component */ </> );
-
Assets folder contains all the images and other files used in the website.