A landing page for an imaginary tech gadget company.
- Vite as the build tool
- React for building user interfaces
- TypeScript for static typing
- Tailwind CSS / HeadlessUI for styling
- React-scroll for smooth scrolling
You can access the deployed version of this app at https://weiss-ishtails.vercel.app/.
If you would like to run the app locally on your machine, follow the instructions below.
-
Clone this repository to your local machine:
git clone https://github.com/ishtails/Weiss
-
Change to the project directory:
cd Weiss
-
Install the dependencies:
npm install
To start the development server, run the following command:
npm run dev
This will start the application in development mode. Open your browser and navigate to http://localhost:3000
to see the app.
To build the production-ready optimized version of the app, run the following command:
npm run build
This will create a dist
folder with the bundled and minified assets.
You can customize this template by modifying the following files and directories:
src/App.tsx
: The main component of the application.src/main.tsx
: The entry point of the application.tailwind.config.js
: Configuration file for Tailwind CSS.