129 lines
6.0 KiB
PHP
129 lines
6.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Virtual Arena for College Fest</title>
|
|
<meta name="description" content="The ultimate platform for college fests. Participate in competitions, showcase your talent, and win big!">
|
|
<meta name="keywords" content="college fest, virtual arena, online competitions, student events, university festival, coding contest, design competition, music battle">
|
|
<meta property="og:title" content="Virtual Arena for College Fest">
|
|
<meta property="og:description" content="The ultimate platform for college fests. Participate in competitions, showcase your talent, and win big!">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
|
|
<!-- Feather Icons -->
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand h1 mb-0" href="#">Virtual Arena</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" aria-current="page" href="#">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#competitions">Competitions</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Login</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link btn btn-primary text-white ms-2" href="#">Sign Up</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section -->
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h1>Welcome to the Virtual Arena</h1>
|
|
<p class="lead">The ultimate platform for college fests. Participate in competitions, showcase your talent, and win big!</p>
|
|
<a href="#competitions" class="btn btn-lg btn-light">View Competitions</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content -->
|
|
<main class="container my-5">
|
|
<!-- Competitions Section -->
|
|
<section id="competitions" class="py-5">
|
|
<h2 class="section-title">Upcoming Competitions</h2>
|
|
<div class="row g-4">
|
|
<?php
|
|
$competitions = [
|
|
[
|
|
'title' => 'CodeStorm',
|
|
'description' => 'A 24-hour hackathon to build innovative solutions. Test your coding skills against the best.'
|
|
],
|
|
[
|
|
'title' => 'Design Masters',
|
|
'description' => 'A creative challenge for UI/UX designers. Craft beautiful and user-friendly interfaces.'
|
|
],
|
|
[
|
|
'title' => 'Pitch Perfect',
|
|
'description' => 'An entrepreneurship contest. Present your business idea to a panel of expert judges.'
|
|
],
|
|
[
|
|
'title' => 'Shutter Speed',
|
|
'description' => 'A photography competition. Capture stunning moments and tell a story through your lens.'
|
|
],
|
|
[
|
|
'title' => 'Melody Mania',
|
|
'description' => 'A solo singing competition. Showcase your vocal talent and mesmerize the audience.'
|
|
],
|
|
[
|
|
'title' => 'Debate League',
|
|
'description' => 'A battle of wits and words. Argue your stance on pressing contemporary issues.'
|
|
]
|
|
];
|
|
|
|
foreach ($competitions as $competition):
|
|
?>
|
|
<div class="col-md-6 col-lg-4 d-flex align-items-stretch">
|
|
<div class="competition-card w-100">
|
|
<div class="card-body d-flex flex-column">
|
|
<h4 class="card-title"><?php echo htmlspecialchars($competition['title']); ?></h4>
|
|
<p class="card-text flex-grow-1"><?php echo htmlspecialchars($competition['description']); ?></p>
|
|
<a href="#" class="btn btn-secondary align-self-start">Learn More</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container text-center">
|
|
<p>© <?php echo date("Y"); ?> Virtual Arena. All Rights Reserved.</p>
|
|
<p>Built with Flatlogic</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap 5 JS Bundle -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
|
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
</body>
|
|
</html>
|