-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
831741b
commit 105a970
Showing
1 changed file
with
53 additions
and
14 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 |
---|---|---|
@@ -1,34 +1,73 @@ | ||
import React from 'react'; | ||
import AnimatedText from './text'; | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer className='flex items-center justify-center flex-col p-4'> | ||
<div className="grid grid-cols-1 md:grid-cols-3 gap-10 w-full text-left text-white py-4 font-montreal-book uppercase"> | ||
<div className="text-left"> | ||
<h3 className="font-bold font-montreal-medium text-enigma-green">ENIGMA</h3> | ||
<h3 className="font-bold font-montreal-medium text-enigma-green"> | ||
<AnimatedText text="ENIGMA" /> | ||
</h3> | ||
<ul> | ||
<li><a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://lugvitc.net/" target="_blank" rel="noopener noreferrer">LUGVITC</a></li> | ||
<li><a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://type.lugvitc.net/" target="_blank" rel="noopener noreferrer">LUGTYPE</a></li> | ||
<li>Contact</li> | ||
<li> | ||
<a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://lugvitc.net/" target="_blank" rel="noopener noreferrer"> | ||
<AnimatedText text="LUGVITC" /> | ||
</a> | ||
</li> | ||
<li> | ||
<a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://type.lugvitc.net/" target="_blank" rel="noopener noreferrer"> | ||
<AnimatedText text="LUGTYPE" /> | ||
</a> | ||
</li> | ||
<li> | ||
<AnimatedText text="Contact" /> | ||
</li> | ||
</ul> | ||
</div> | ||
<div className="text-left"> | ||
<h3 className="font-bold font-montreal-medium text-enigma-green">Socials</h3> | ||
<h3 className="font-bold font-montreal-medium text-enigma-green"> | ||
<AnimatedText text="Socials" /> | ||
</h3> | ||
<ul> | ||
<li><a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://x.com/lugvitc" target="_blank" rel="noopener noreferrer">Twitter</a></li> | ||
<li><a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://instagram.com/lugvitc" target="_blank" rel="noopener noreferrer">Instagram</a></li> | ||
<li><a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://github.com/lugvitc" target="_blank" rel="noopener noreferrer">GitHub</a></li> | ||
<li> | ||
<a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://x.com/lugvitc" target="_blank" rel="noopener noreferrer"> | ||
<AnimatedText text="Twitter" /> | ||
</a> | ||
</li> | ||
<li> | ||
<a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://instagram.com/lugvitc" target="_blank" rel="noopener noreferrer"> | ||
<AnimatedText text="Instagram" /> | ||
</a> | ||
</li> | ||
<li> | ||
<a className="no-underline text-gray-300 hover:text-green-500 hover:underline" href="https://github.com/lugvitc" target="_blank" rel="noopener noreferrer"> | ||
<AnimatedText text="GitHub" /> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div className="text-left"> | ||
<h3 className="font-bold font-montreal-medium text-enigma-green">VIT Chennai</h3> | ||
<h3 className="font-bold font-montreal-medium text-enigma-green"> | ||
<AnimatedText text="VIT Chennai" /> | ||
</h3> | ||
<ul> | ||
<li>Kelambakkam - Vandalur Rd</li> | ||
<li>Rajan Nagar, Chennai, Tamil Nadu</li> | ||
<li>India</li> | ||
<li> | ||
<AnimatedText text="Kelambakkam - Vandalur Rd" /> | ||
</li> | ||
<li> | ||
<AnimatedText text="Rajan Nagar, Chennai, Tamil Nadu" /> | ||
</li> | ||
<li> | ||
<AnimatedText text="India" /> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div className="line w-full my-4"></div> | ||
<p className="text-big-phone-xl font-calcio text-white responsive-text lg:text-big-desktop-xl">ENIGMA</p> | ||
<p className="text-big-phone-xl font-calcio text-white responsive-text lg:text-big-desktop-xl"> | ||
<AnimatedText text="ENIGMA" /> | ||
</p> | ||
</footer> | ||
) | ||
); | ||
} |