import Head from 'next/head'import { useState } from 'react'export default function Home() { const [email, setEmail] = useState('') const handleSubmit = (e) => { e.preventDefault() // Handle form submission here console.log('Submitted email:', email) // Reset form setEmail('') } return (
Horizon University Admissions

Shape Your Future at Horizon University

Discover world-class education, cutting-edge research, and a vibrant community.

Apply Now

200+ Programs

Explore a wide range of undergraduate and graduate programs tailored to your interests and career goals.

95% Employment Rate

Our graduates are highly sought after, with most securing positions within 6 months of graduation.

$50M in Scholarships

We offer numerous scholarships and financial aid options to make your education accessible.

Stay Connected

Sign up for our newsletter to receive the latest updates and admissions information.

setEmail(e.target.value)} className="flex-grow px-4 py-2 rounded-full focus:outline-none focus:ring-2 focus:ring-blue-600"required />
)}