Aipandit commited on
Commit
13490cf
·
verified ·
1 Parent(s): 460ea2f

How to run

Browse files
Files changed (1) hide show
  1. run.sh +23 -0
run.sh ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```bash
2
+ #!/bin/bash
3
+ # Method 1: Using Python's built-in server (works on most systems)
4
+ python3 -m http.server 8000
5
+
6
+ # Method 2: Using Node.js http-server (if you have Node installed)
7
+ # npm install -g http-server
8
+ # http-server
9
+
10
+ # Method 3: Using PHP built-in server (if you have PHP installed)
11
+ # php -S localhost:8000
12
+ ```
13
+
14
+ After starting the server, open your browser and visit:
15
+ http://localhost:8000
16
+
17
+ The website should now be running with:
18
+ - Interactive notification cards
19
+ - Working navigation
20
+ - Simulated content updates
21
+ - Responsive design
22
+
23
+ Note: Make sure all dependencies (feather icons, tailwind) are loading properly in the browser console. If you see any errors about CORS, you may need to serve the files through a proper web server.