116 lines
5.2 KiB
PHP
116 lines
5.2 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&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%;">
|
|
<div class="logo"><?= htmlspecialchars($platformName) ?></div>
|
|
<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>
|
|
<a href="register.php" class="btn btn-primary">Get Started</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="hero">
|
|
<div class="hero-bg">
|
|
<div class="hero-blob" style="top: 10%; left: 20%;"></div>
|
|
<div class="hero-blob" style="bottom: 10%; right: 20%; background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(0, 242, 255, 0.1) 100%);"></div>
|
|
</div>
|
|
<div class="container">
|
|
<h1>Build the future, <br>funded by each other.</h1>
|
|
<p>The exclusive platform for university students and graduates to connect as co-founders, share ideas, and micro-invest in the next big thing.</p>
|
|
<div style="display: flex; gap: 20px; justify-content: center;">
|
|
<a href="register.php" class="btn btn-primary">Join the Community</a>
|
|
<a href="#how-it-works" class="btn btn-secondary">Learn More</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>Verify</h3>
|
|
<p>Exclusive access for verified university students and recent graduates (up to 5 years). Safe, trusted, and high-quality network.</p>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-icon"><i class="fas fa-people-arrows"></i></div>
|
|
<h3>Connect</h3>
|
|
<p>Find your ideal co-founder or early team members using our intelligent matching questionnaire based on skills and vision.</p>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-icon"><i class="fas fa-chart-line"></i></div>
|
|
<h3>Fund</h3>
|
|
<p>Launch your startup to raise micro-investments starting from £50, or build your own portfolio by backing your peers.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="how-it-works" class="how-it-works container">
|
|
<h2>How it works</h2>
|
|
<div class="steps">
|
|
<div class="step">
|
|
<span class="step-number">01</span>
|
|
<h4>Join & Verify</h4>
|
|
<p>Sign up with your university email. We verify your status to keep the community exclusive.</p>
|
|
</div>
|
|
<div class="step">
|
|
<span class="step-number">02</span>
|
|
<h4>Choose Your Path</h4>
|
|
<p>Identify as a Founder to build or an Investor to back. Tailor your profile to your goals.</p>
|
|
</div>
|
|
<div class="step">
|
|
<span class="step-number">03</span>
|
|
<h4>Launch & Scale</h4>
|
|
<p>List your startup, find co-founders, or start investing in the most ambitious student projects.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<div class="logo" style="margin-bottom: 30px;"><?= htmlspecialchars($platformName) ?></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>© <?= date('Y') ?> <?= htmlspecialchars($platformName) ?>. All rights reserved.</p>
|
|
<p style="font-size: 12px; margin-top: 10px; opacity: 0.5;">Powered by AppWizzy</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|