Skip to content

Commit

Permalink
feature: adds hero section on the landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
SatyaRajAwasth1 committed Oct 7, 2024
1 parent a0b997c commit e4d7c2a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/components/homepage/HeroSection.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<section class="h-screen w-full flex flex-col justify-start items-center bg-gray-900 text-white">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold mt-40 mb-6">
Stay Connected, Build Networks
</h1>
<p class="text-lg md:text-2xl mb-16">
Join the global NCIT Alumnus as they share <br> their journeys, profiles and experiences creating opportunities together.
</p>
<div class="flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="border border-green-500 hover:bg-green-500 text-white py-3 px-6 transition-all duration-300">
Submit Your Profile
</a>
<a href="#" class="border border-blue-500 hover:bg-blue-500 text-white py-3 px-6 transition-all duration-300">
Explore Alumni
</a>
</div>
</div>
</section>

0 comments on commit e4d7c2a

Please sign in to comment.