P2THE28 commited on
Commit
da623e4
Β·
verified Β·
1 Parent(s): 9395891

Update features.html

Browse files
Files changed (1) hide show
  1. features.html +70 -86
features.html CHANGED
@@ -1,120 +1,104 @@
1
  <!doctype html>
2
  <html lang="en">
3
  <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1">
6
  <title>StartupAI β€” Features</title>
7
- <link rel="stylesheet" href="style.css">
 
8
 
9
  <!-- Firebase -->
10
- <script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js"></script>
11
- <script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-auth.js"></script>
12
  </head>
13
 
14
  <body>
15
-
16
- <!-- ---------------- TOP NAVBAR ---------------- -->
17
  <header class="topbar">
18
- <div class="brand" onclick="window.location='index.html'">StartupAI</div>
19
 
20
  <nav class="nav">
21
- <a href="index.html">Home</a>
22
- <a class="active" href="features.html">Features</a>
23
  <a href="analysis.html">Analysis</a>
24
  </nav>
25
 
26
  <div class="actions">
 
27
  <div id="userSection" class="user-section hidden">
28
- <img id="userPhoto" class="user-photo" src="" alt="">
29
  <div id="userDropdown" class="dropdown hidden">
30
  <div id="userName" class="dropdown-name"></div>
31
  <div id="userEmail" class="dropdown-email"></div>
32
- <button onclick="window.location='myreports.html'" class="dropdown-item">My Reports</button>
33
- <button id="logoutBtn" class="dropdown-item danger">Logout</button>
34
  </div>
35
  </div>
36
 
 
37
  <button id="openGoogle" class="ghost">Login with Google</button>
38
  </div>
39
  </header>
40
 
41
- <!-- ---------------- HERO ---------------- -->
42
- <section class="hero small-hero">
43
- <h1 class="hero-title">Everything You Need To Validate Your Startup</h1>
44
- <p class="hero-sub">Explore all AI-powered tools designed to help founders make smarter decisions.</p>
45
- </section>
46
-
47
- <!-- ---------------- FEATURES GRID ---------------- -->
48
- <main class="feature-page">
49
- <div class="feature-grid big">
50
-
51
- <div class="feature card-block">
52
- <div class="icon">🧠</div>
53
- <h3>AI-Powered Insights</h3>
54
- <p>Our ML model analyzes your idea and compares it with thousands of successful and failed startups.</p>
55
- </div>
56
-
57
- <div class="feature card-block">
58
- <div class="icon">πŸ“ˆ</div>
59
- <h3>Market Trend Prediction</h3>
60
- <p>Get trend forecasts for your industry so you can launch at the right time.</p>
61
- </div>
62
-
63
- <div class="feature card-block">
64
- <div class="icon">🎯</div>
65
- <h3>Competition Mapping</h3>
66
- <p>See competitor positioning and discover untapped opportunities in your market.</p>
67
- </div>
68
-
69
- <div class="feature card-block">
70
- <div class="icon">πŸ“Š</div>
71
- <h3>Feasibility Score</h3>
72
- <p>Receive a success probability score based on 20+ evaluation criteria.</p>
73
- </div>
74
-
75
- <div class="feature card-block">
76
- <div class="icon">πŸ›‘οΈ</div>
77
- <h3>Risk Analysis</h3>
78
- <p>Our system uncovers potential weaknesses before they become real problems.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  </div>
 
80
 
81
- <div class="feature card-block">
82
- <div class="icon">πŸ’‘</div>
83
- <h3>Actionable Recommendations</h3>
84
- <p>AI gives you targeted advice to improve traction, market fit, and product strategy.</p>
85
- </div>
86
-
87
- <div class="feature card-block">
88
- <div class="icon">🧩</div>
89
- <h3>Business Model Evaluation</h3>
90
- <p>Understand revenue models, cost structure, and pricing viability.</p>
91
- </div>
92
-
93
- <div class="feature card-block">
94
- <div class="icon">🀝</div>
95
- <h3>Team Strength Analysis</h3>
96
- <p>AI checks your founding team structure and suggests improvements.</p>
97
- </div>
98
-
99
- <div class="feature card-block">
100
- <div class="icon">πŸš€</div>
101
- <h3>Go-To-Market Strategy</h3>
102
- <p>Get tailored marketing & launch strategies for your specific industry.</p>
103
- </div>
104
-
105
- </div>
106
-
107
- <div class="center" style="margin-top:40px;">
108
- <button class="btn primary" onclick="window.location='analysis.html'">
109
- Start AI Analysis β†’
110
- </button>
111
- </div>
112
  </main>
113
 
114
- <footer class="foot">
115
- Made with ❀️ by team Vibranium β€” AI for founders.
116
- </footer>
117
-
118
  <script src="script.js"></script>
119
  </body>
120
  </html>
 
1
  <!doctype html>
2
  <html lang="en">
3
  <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
  <title>StartupAI β€” Features</title>
7
+
8
+ <link rel="stylesheet" href="style.css" />
9
 
10
  <!-- Firebase -->
11
+ <script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
12
+ <script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
13
  </head>
14
 
15
  <body>
16
+ <!-- ===================== NAVBAR ===================== -->
 
17
  <header class="topbar">
18
+ <div class="brand" onclick="location.href='/'" style="cursor:pointer">StartupAI</div>
19
 
20
  <nav class="nav">
21
+ <a href="/">Home</a>
22
+ <a href="features.html" class="active">Features</a>
23
  <a href="analysis.html">Analysis</a>
24
  </nav>
25
 
26
  <div class="actions">
27
+ <!-- User Profile Section -->
28
  <div id="userSection" class="user-section hidden">
29
+ <img id="userPhoto" class="user-photo" src="" alt="Profile" />
30
  <div id="userDropdown" class="dropdown hidden">
31
  <div id="userName" class="dropdown-name"></div>
32
  <div id="userEmail" class="dropdown-email"></div>
33
+ <button class="dropdown-item" onclick="location.href='my-reports.html'">My Reports</button>
34
+ <button id="logoutBtn" class="dropdown-item danger" onclick="handleLogout()">Logout</button>
35
  </div>
36
  </div>
37
 
38
+ <!-- Login Button -->
39
  <button id="openGoogle" class="ghost">Login with Google</button>
40
  </div>
41
  </header>
42
 
43
+ <!-- ===================== PAGE CONTENT ===================== -->
44
+ <main>
45
+ <section class="hero">
46
+ <div class="hero-badge">πŸš€ Powerful AI Features</div>
47
+ <h1 class="hero-title">Explore Everything <span>StartupAI</span> Can Do</h1>
48
+ <p class="hero-sub">
49
+ From fast startup evaluations to deep market insights β€” our AI gives you
50
+ everything you need to build smarter.
51
+ </p>
52
+ </section>
53
+
54
+ <section class="features-intro">
55
+ <h2>Our Core Features</h2>
56
+ <p>Designed for founders, startups, and innovators.</p>
57
+
58
+ <div class="feature-grid">
59
+ <article class="feature">
60
+ <div class="icon">⚑</div>
61
+ <h3>Fast Analysis</h3>
62
+ <p>Get a rapid AI-powered evaluation of your startup idea in seconds.</p>
63
+ </article>
64
+
65
+ <article class="feature">
66
+ <div class="icon">🎯</div>
67
+ <h3>Deep Analysis</h3>
68
+ <p>Detailed market, competition, risk, and feasibility assessment.</p>
69
+ </article>
70
+
71
+ <article class="feature">
72
+ <div class="icon">πŸ“ˆ</div>
73
+ <h3>Market Insights</h3>
74
+ <p>AI analyzes industry trends to give you a strategic edge.</p>
75
+ </article>
76
+
77
+ <article class="feature">
78
+ <div class="icon">πŸ›‘οΈ</div>
79
+ <h3>Risk Detection</h3>
80
+ <p>Identify hidden risks before they impact your startup.</p>
81
+ </article>
82
+
83
+ <article class="feature">
84
+ <div class="icon">πŸ€–</div>
85
+ <h3>ML-Driven Predictions</h3>
86
+ <p>Success forecasting based on thousands of successful patterns.</p>
87
+ </article>
88
+
89
+ <article class="feature">
90
+ <div class="icon">πŸ’‘</div>
91
+ <h3>Actionable Recommendations</h3>
92
+ <p>Improve your idea instantly with AI-generated insights.</p>
93
+ </article>
94
  </div>
95
+ </section>
96
 
97
+ <footer class="foot">
98
+ Made with ❀️ by team Vibranium β€” AI for founders.
99
+ </footer>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  </main>
101
 
 
 
 
 
102
  <script src="script.js"></script>
103
  </body>
104
  </html>