Spaces:
Running
Running
File size: 6,230 Bytes
6669337 2524403 6669337 2524403 6669337 2524403 6669337 2524403 6669337 2524403 6669337 | 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 106 107 108 109 110 111 112 113 114 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Naija Scholar Tracker | School Results Portal</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container">
<!-- Hero Section -->
<section class="text-center py-8 md:py-12">
<h1 class="text-4xl font-bold text-green-700 mb-4">Welcome to Naija Scholar Tracker</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Nigeria's premier secondary school results portal for students, parents, and educators</p>
</section>
<!-- Search Section -->
<section class="card p-4 md:p-6 mb-8 md:mb-12 max-w-4xl mx-auto">
<h2 class="text-2xl font-semibold text-green-700 mb-6">Check Your Results</h2>
<form class="space-y-4">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label class="block text-gray-700 mb-2" for="exam-type">Exam Type</label>
<select id="exam-type" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-green-500">
<option value="">Select Exam Type</option>
<option value="waec">WAEC</option>
<option value="neco">NECO</option>
<option value="jamb">JAMB</option>
<option value="bece">BECE</option>
</select>
</div>
<div>
<label class="block text-gray-700 mb-2" for="exam-year">Exam Year</label>
<select id="exam-year" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-green-500">
<option value="">Select Year</option>
<option value="2023">2023</option>
<option value="2022">2022</option>
<option value="2021">2021</option>
</select>
</div>
</div>
<div>
<label class="block text-gray-700 mb-2" for="exam-number">Exam Number</label>
<input type="text" id="exam-number" placeholder="Enter your exam number" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-green-500">
</div>
<button type="submit" class="w-full bg-green-600 text-white py-3 px-4 rounded-md hover:bg-green-700 transition duration-300 flex items-center justify-center">
<i data-feather="search" class="mr-2"></i> Check Results
</button>
</form>
</section>
<!-- Features Section -->
<section class="mb-8 md:mb-16">
<h2 class="text-2xl md:text-3xl font-bold text-center text-green-700 mb-8 md:mb-12">Our Features</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4 md:gap-8">
<div class="card p-4 md:p-6 text-center">
<div class="bg-green-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i data-feather="file-text" class="text-green-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Result Verification</h3>
<p class="text-gray-600">Verify your exam results instantly with our secure platform</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md text-center">
<div class="bg-green-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i data-feather="trending-up" class="text-green-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Performance Analysis</h3>
<p class="text-gray-600">Get detailed analysis of your academic performance</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md text-center">
<div class="bg-green-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i data-feather="shield" class="text-green-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Secure Access</h3>
<p class="text-gray-600">Your data is protected with advanced security measures</p>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-green-700 text-white rounded-lg p-6 md:p-8 mb-8 md:mb-12">
<div class="grid grid-cols-2 sm:grid-cols-4 gap-3 md:gap-4 text-center">
<div>
<div class="text-4xl font-bold mb-2">50K+</div>
<div class="text-green-200">Students</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">10K+</div>
<div class="text-green-200">Schools</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">5+</div>
<div class="text-green-200">Exam Bodies</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">99%</div>
<div class="text-green-200">Accuracy</div>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |