Skip to content

Commit

Permalink
update: footer text animations
Browse files Browse the repository at this point in the history
  • Loading branch information
ppmpreetham committed Jan 3, 2025
1 parent 831741b commit 105a970
Showing 1 changed file with 53 additions and 14 deletions.
67 changes: 53 additions & 14 deletions src/components/footer.jsx
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>
)
);
}

0 comments on commit 105a970

Please sign in to comment.