- Clone this repo:
git clone https://github.com/harshitabisht05/SQAI-website.git- Navigate to the project directory:
cd SQAI-website- Install the required dependencies:
npm install
npm install framer-motion
npm install lucide-react- Start the development server:
npm run dev- Open your browser and go to
http://localhost:3000to view the application.
- The project is built using Next.js, a React framework.
- The main entry point is
app/page.tsx. - You can edit the components in the
app/componentsdirectory according to the task assigned. - For Navigation bar use
app/components/Header.tsx. - For Hero section use
app/components/Hero.tsx. - For Project section use
app/components/Projects.tsx. - For Footer section use
app/components/Footer.tsx.
app/: Contains the main application code.components/: Contains reusable components.public/: Contains static assets like images.package.json: Contains project dependencies and scripts.tsconfig.json: TypeScript configuration file.next.config.js: Next.js configuration file.README.md: This file, providing an overview of the project.
SQAI-website/
├── app/
│ ├── components/
│ │ ├── Footer.tsx
│ │ ├── Header.tsx
│ │ ├── Hero.tsx
│ │ └── Projects.tsx
│ └── globals.css
│ └── layout.tsx
│ └── page.tsx
│ └── favicon.ico
├── public/
│ └── ...static assets (images, etc.)
├── package.json
├── tsconfig.json
├── next.config.js
└── README.md