-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: adds hero section on the landing page
- Loading branch information
1 parent
a0b997c
commit e4d7c2a
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |