@tailwind base;@tailwind components;@tailwind utilities;html{scroll-behavior:smooth;background-color:#000}``` ### **Step 3: Add the Application Code** 1 Navigate to the `src` folder. 2 Open `App.jsx`. 3 **Delete all existing code** in that file. 4 **Copy the code from the "App.jsx" file in the Canvas** (on the right side of your screen) and paste it there. ### **Step 4: Run the Website** To see the website working on your computer: 1 In your terminal,run: ```bash npm run dev ``` 2 Hold `Ctrl` (or `Cmd` on Mac) and click the link shown (usually `http://localhost:5173`) to open it in your browser. ### **Step 5: Deploy (Make it Live)** To generate the files for a live server (like Vercel,Netlify,or CPanel): 1 Stop the dev server (press `Ctrl + C` in the terminal). 2 Run the build command: ```bash npm run build{}
