Update src/app/page.tsx

This commit is contained in:
2026-03-11 15:44:05 +00:00
parent 0a6a8b7aaa
commit 8cfceedb7b

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "Programs", id: "features" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "contact" }
]}
/>
@@ -200,19 +201,27 @@ export default function LandingPage() {
]
},
{
title: "Resources", items: [
{ label: "Student Portal", href: "#" },
{ label: "Parent Resources", href: "#" },
title: "School Info", items: [
{ label: "Admissions", href: "contact" },
{ label: "Events & News", href: "/events" },
{ label: "Academics", href: "features" },
{ label: "Calendar", href: "#" }
{ label: "Calendar", href: "/events" }
]
},
{
title: "Contact Us", items: [
{ label: "Phone: (555) 123-4567", href: "#" },
{ label: "Email: info@academy.edu", href: "mailto:info@academy.edu" },
{ label: "Address: 123 Education Lane", href: "#" },
{ label: "Hours: Mon-Fri 8am-4pm", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Email Us", href: "#" },
{ label: "Visit Campus", href: "contact" },
{ label: "Social Media", href: "https://twitter.com" },
{ label: "Careers", href: "#" }
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "LinkedIn", href: "https://linkedin.com" }
]
}
]}