120 lines
6.8 KiB
PHP
120 lines
6.8 KiB
PHP
<?php
|
|
require_once __DIR__ . '/db/config.php';
|
|
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Exclusive startup networking and micro-investment platform for students and graduates.';
|
|
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
|
$platformName = defined('PLATFORM_NAME') ? PLATFORM_NAME : 'Gatsby';
|
|
?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><?= htmlspecialchars($platformName) ?> — Connect. Fund. Build.</title>
|
|
<?php if ($projectDescription): ?>
|
|
<meta name="description" content="<?= htmlspecialchars($projectDescription) ?>">
|
|
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>">
|
|
<?php endif; ?>
|
|
<?php if ($projectImageUrl): ?>
|
|
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>">
|
|
<?php endif; ?>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<div class="container" style="display: flex; justify-content: space-between; align-items: center; width: 100%;">
|
|
<a href="index.php" class="logo-container">
|
|
<img src="assets/images/logo.svg?v=<?php echo time(); ?>" alt="<?= htmlspecialchars($platformName) ?> Logo" class="logo-img">
|
|
<span class="logo-text"><?= htmlspecialchars($platformName) ?></span>
|
|
</a>
|
|
<nav class="nav-links">
|
|
<a href="#how-it-works">How it works</a>
|
|
<a href="#features">Features</a>
|
|
<a href="login.php">Log In</a>
|
|
</nav>
|
|
<div style="display: flex; gap: 12px;">
|
|
<a href="register.php" class="btn btn-primary">Join Now</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="hero">
|
|
<div class="container">
|
|
<div class="match-score-pill" style="margin-bottom: 30px; background: var(--surface-color); color: var(--accent-primary); border: 1px solid var(--border-color); padding: 8px 16px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;">
|
|
<i class="fas fa-sparkles"></i> The University Startup Network
|
|
</div>
|
|
<h1>The smarter way to <br><span>Connect & Scale.</span></h1>
|
|
<p>Connect with co-founders, hire early talent, and raise micro-investments from a verified community of university students and graduates.</p>
|
|
<div style="display: flex; gap: 20px; justify-content: center;">
|
|
<a href="register.php" class="btn btn-primary" style="padding: 16px 32px; font-size: 18px;">Start Your Journey</a>
|
|
<a href="#how-it-works" class="btn btn-secondary" style="padding: 16px 32px; font-size: 18px;">See How It Works</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="features" class="container">
|
|
<div class="features">
|
|
<div class="card">
|
|
<div class="card-icon"><i class="fas fa-user-shield"></i></div>
|
|
<h3 style="font-size: 24px; font-weight: 800; margin-bottom: 15px;">Verified Exclusivity</h3>
|
|
<p style="color: var(--text-secondary);">Exclusive access for verified university students and recent graduates. We ensure a high-trust environment for serious builders.</p>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-icon"><i class="fas fa-people-arrows"></i></div>
|
|
<h3 style="font-size: 24px; font-weight: 800; margin-bottom: 15px;">Intelligent Matching</h3>
|
|
<p style="color: var(--text-secondary);">Find your ideal co-founder based on complementary skills, shared vision, and cultural fit using our advanced discovery engine.</p>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-icon"><i class="fas fa-chart-line"></i></div>
|
|
<h3 style="font-size: 24px; font-weight: 800; margin-bottom: 15px;">Peer Micro-Funding</h3>
|
|
<p style="color: var(--text-secondary);">Raise early-stage capital from your peers. Startups can list rounds while investors build diversified portfolios of student talent.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="how-it-works" class="how-it-works container">
|
|
<h2 style="font-size: 48px; font-weight: 900; margin-bottom: 60px;">Your path from idea to <span>IPO.</span></h2>
|
|
<div class="steps">
|
|
<div class="step">
|
|
<span class="step-number">01</span>
|
|
<h4 style="font-size: 28px; font-weight: 800; margin-bottom: 10px;">Verify & Profile</h4>
|
|
<p style="color: var(--text-secondary); font-size: 18px;">Sign up with your .edu or university email to join the elite circle of student founders.</p>
|
|
</div>
|
|
<div class="step">
|
|
<span class="step-number">02</span>
|
|
<h4 style="font-size: 28px; font-weight: 800; margin-bottom: 10px;">Swipe & Match</h4>
|
|
<p style="color: var(--text-secondary); font-size: 18px;">Discover partners or startups. Swipe right on potential co-founders or investment opportunities.</p>
|
|
</div>
|
|
<div class="step">
|
|
<span class="step-number">03</span>
|
|
<h4 style="font-size: 28px; font-weight: 800; margin-bottom: 10px;">Build & Fund</h4>
|
|
<p style="color: var(--text-secondary); font-size: 18px;">Incorporate, launch your funding round, and scale with the support of the whole community.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<div class="logo-container" style="justify-content: center; margin-bottom: 40px;">
|
|
<img src="assets/images/logo.svg?v=<?php echo time(); ?>" alt="<?= htmlspecialchars($platformName) ?> Logo" style="width: 48px; height: 48px;">
|
|
<span class="logo-text" style="font-size: 32px;"><?= htmlspecialchars($platformName) ?></span>
|
|
</div>
|
|
<div class="footer-links">
|
|
<a href="#">About Us</a>
|
|
<a href="#">Terms of Service</a>
|
|
<a href="#">Privacy Policy</a>
|
|
<a href="#">Contact Support</a>
|
|
</div>
|
|
<p style="margin-top: 40px; font-size: 14px; color: var(--text-disabled);">© <?= date('Y') ?> <?= htmlspecialchars($platformName) ?>. All rights reserved.</p>
|
|
<p style="font-size: 12px; margin-top: 10px; color: var(--text-disabled);">Built for the next generation of entrepreneurs.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|