Landing page is live at stack-ai-redesign.vercel.app
This is a redesign of Stack AI's landing page with new components and new approaches.
Design Engineer Role Assignment by Yash Sehgal
git clone https://github.com/yashsehgal/stack-ai-redesign.git
cd stack-ai-redesign
yarn
yarn dev
After writing some code, make sure the apply prettier code formatting before pushing changes.
yarn run code-quality-fix
Open your web browser and visit http://localhost:3000 to see your Next.js app running locally.
Now you have your Next.js project set up on your local machine, and you can start making changes or additions to the code.
├── components/
│ ├── ui/
│ │ ├── usables/
│ │ │ └── (usable component files)
│ │ ├── bento-card.tsx
│ │ ├── button.tsx
│ │ ├── cta.tsx
│ │ ├── feature-card.tsx
│ │ ├── feature-icon.tsx
│ │ ├── logo.tsx
│ │ ├── navigation-menu.tsx
│ │ ├── sidebar-menu.tsx
│ │ ├── icon-content-wrapper.tsx
│ │ ├── sheet.tsx
│ │ └── index.tsx
│ ├── sections/
│ │ ├── basic-features.tsx
│ │ ├── data-loaders.tsx
│ │ ├── certifications.tsx
│ │ ├── partners.tsx
│ │ ├── investors.tsx
│ │ ├── cta.tsx
│ │ ├── testimonials.tsx
│ │ ├── get-started-docs.tsx
│ │ ├── build-ideas.tsx
│ │ ├── features-bento.tsx
│ │ ├── hero.tsx
│ │ ├── how-to-use.tsx
│ │ ├── models-used.tsx
│ │ ├── navbar.tsx
│ │ ├── security.tsx
│ │ └── index.tsx
│ └── layouts/
│ ├── section-container.tsx
│ ├── view-container.tsx
│ ├── screen-mockup.tsx
│ └── index.tsx
├── helpers/
│ ├── utils.ts
│ └── index.ts
├── common/
│ ├── index.ts
│ ├── react-constants.tsx
│ ├── constants.ts
├── app/
│ ├── favicon.ico
│ ├── globals.css
│ ├── layout.tsx
│ └── page.tsx
├── pages/
│ └── index.js
├── public/
│ └── ...
├── styles/
│ └── ...
├── .gitignore
├── package.json
└── README.md