Spaces:
Sleeping
Sleeping
Update features.html
Browse files- features.html +111 -52
features.html
CHANGED
|
@@ -1,61 +1,120 @@
|
|
| 1 |
-
<!
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
-
<meta charset="
|
| 5 |
-
<
|
| 6 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
</head>
|
| 8 |
|
| 9 |
<body>
|
| 10 |
|
| 11 |
-
<
|
| 12 |
-
<
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
<
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
</nav>
|
| 20 |
-
|
| 21 |
-
<
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
<
|
| 25 |
-
|
| 26 |
-
<
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
<
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
<
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
<
|
| 44 |
-
<
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
|
|
|
|
| 60 |
</body>
|
| 61 |
</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 |
+
<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>
|