34915-vm/index.php
2025-10-14 07:40:18 +00:00

106 lines
6.2 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>READY BUDDY</title>
<meta name="description" content="Join competitions, showcase your skills, and win prizes with READY BUDDY.">
<meta name="keywords" content="competitions, contests, prizes, challenges, skills, community, Built with Flatlogic Generator">
<meta property="og:title" content="READY BUDDY">
<meta property="og:description" content="The ultimate platform for online competitions and challenges.">
<meta property="og:image" content="">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<?php include 'includes/header.php'; ?>
<main>
<section id="hero" class="d-flex align-items-center text-center">
<div class="container">
<h1 class="display-3 fw-bold">Welcome to READY BUDDY</h1>
<p class="lead col-lg-6 mx-auto">The ultimate platform to challenge yourself, compete with others, and win amazing prizes. Your journey to greatness starts here.</p>
<a href="#contact" class="btn btn-primary btn-lg rounded-pill">Get Started</a>
</div>
</section>
<section id="about" class="py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h2 class="fw-bold">About Us</h2>
<p>READY BUDDY is a vibrant community and competition platform designed to bring out the best in you. We believe in the power of healthy competition to foster growth, learning, and connection. Whether you're a student, a professional, or a hobbyist, our platform provides the stage for you to shine.</p>
<p>We host a variety of competitions, from coding challenges and design contests to quizzes and creative showcases. Join us to test your skills, win prizes, and become part of a supportive community.</p>
</div>
<div class="col-lg-6 text-center">
<i class="bi bi-trophy-fill display-1 text-primary"></i>
</div>
</div>
</div>
</section>
<section id="portfolio" class="py-5 bg-light">
<div class="container text-center">
<h2 class="fw-bold">Portfolio</h2>
<p class="text-muted mb-5">Check out some of our past competitions and winner showcases.</p>
<div class="row">
<div class="col-md-4 mb-4"><div class="card h-100"><div class="card-body"><h5 class="card-title">CodeFest 2025</h5><p class="card-text">An intense coding marathon.</p></div></div></div>
<div class="col-md-4 mb-4"><div class="card h-100"><div class="card-body"><h5 class="card-title">Design Masters</h5><p class="card-text">A creative design challenge.</p></div></div></div>
<div class="col-md-4 mb-4"><div class="card h-100"><div class="card-body"><h5 class="card-title">Quiz Bowl</h5><p class="card-text">A battle of wits and knowledge.</p></div></div></div>
</div>
</div>
</section>
<section id="testimonials" class="py-5">
<div class="container text-center">
<h2 class="fw-bold">What Our Users Say</h2>
<div id="testimonialCarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active"><p class="lead fst-italic col-lg-8 mx-auto">"A fantastic platform! I won the CodeFest and it was a great experience."</p><p class="fw-bold">- Alex Doe</p></div>
<div class="carousel-item"><p class="lead fst-italic col-lg-8 mx-auto">"The community is so supportive. I learned a lot."</p><p class="fw-bold">- Jane Smith</p></div>
</div>
</div>
</div>
</section>
<section id="contact" class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h2 class="fw-bold">Contact Us</h2>
<p class="text-muted mb-4">Have questions? We'd love to hear from you.</p>
<div id="contact-form-container">
<form id="contactForm">
<div class="form-floating mb-3">
<input type="text" class="form-control" id="name" placeholder="Your Name" required>
<label for="name">Your Name</label>
</div>
<div class="form-floating mb-3">
<input type="email" class="form-control" id="email" placeholder="name@example.com" required>
<label for="email">Email address</label>
</div>
<div class="form-floating mb-3">
<textarea class="form-control" id="message" placeholder="Your Message" style="height: 150px" required></textarea>
<label for="message">Your Message</label>
</div>
<button type="submit" class="btn btn-primary btn-lg rounded-pill">Send Message</button>
</form>
</div>
<div id="form-feedback"></div>
</div>
</div>
</div>
</section>
</main>
<?php include 'includes/footer.php'; ?>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>