Spaces:
Sleeping
Sleeping
File size: 3,532 Bytes
afabcaf a18e429 da623e4 afabcaf da623e4 afabcaf da623e4 a18e429 da623e4 afabcaf da623e4 afabcaf da623e4 afabcaf da623e4 afabcaf da623e4 afabcaf da623e4 afabcaf da623e4 afabcaf da623e4 afabcaf da623e4 afabcaf da623e4 afabcaf a18e429 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>StartupAI β Features</title>
<link rel="stylesheet" href="style.css" />
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
</head>
<body>
<!-- ===================== NAVBAR ===================== -->
<header class="topbar">
<div class="brand" onclick="location.href='/'" style="cursor:pointer">StartupAI</div>
<nav class="nav">
<a href="/">Home</a>
<a href="features.html" class="active">Features</a>
<a href="analysis.html">Analysis</a>
</nav>
<div class="actions">
<!-- User Profile Section -->
<div id="userSection" class="user-section hidden">
<img id="userPhoto" class="user-photo" src="" alt="Profile" />
<div id="userDropdown" class="dropdown hidden">
<div id="userName" class="dropdown-name"></div>
<div id="userEmail" class="dropdown-email"></div>
<button class="dropdown-item" onclick="location.href='my-reports.html'">My Reports</button>
<button id="logoutBtn" class="dropdown-item danger" onclick="handleLogout()">Logout</button>
</div>
</div>
<!-- Login Button -->
<button id="openGoogle" class="ghost">Login with Google</button>
</div>
</header>
<!-- ===================== PAGE CONTENT ===================== -->
<main>
<section class="hero">
<div class="hero-badge">π Powerful AI Features</div>
<h1 class="hero-title">Explore Everything <span>StartupAI</span> Can Do</h1>
<p class="hero-sub">
From fast startup evaluations to deep market insights β our AI gives you
everything you need to build smarter.
</p>
</section>
<section class="features-intro">
<h2>Our Core Features</h2>
<p>Designed for founders, startups, and innovators.</p>
<div class="feature-grid">
<article class="feature">
<div class="icon">β‘</div>
<h3>Fast Analysis</h3>
<p>Get a rapid AI-powered evaluation of your startup idea in seconds.</p>
</article>
<article class="feature">
<div class="icon">π―</div>
<h3>Deep Analysis</h3>
<p>Detailed market, competition, risk, and feasibility assessment.</p>
</article>
<article class="feature">
<div class="icon">π</div>
<h3>Market Insights</h3>
<p>AI analyzes industry trends to give you a strategic edge.</p>
</article>
<article class="feature">
<div class="icon">π‘οΈ</div>
<h3>Risk Detection</h3>
<p>Identify hidden risks before they impact your startup.</p>
</article>
<article class="feature">
<div class="icon">π€</div>
<h3>ML-Driven Predictions</h3>
<p>Success forecasting based on thousands of successful patterns.</p>
</article>
<article class="feature">
<div class="icon">π‘</div>
<h3>Actionable Recommendations</h3>
<p>Improve your idea instantly with AI-generated insights.</p>
</article>
</div>
</section>
<footer class="foot">
Made with β€οΈ by team Vibranium β AI for founders.
</footer>
</main>
<script src="script.js"></script>
</body>
</html>
|