Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

footer-icons-hover #239

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 9 additions & 34 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,45 +22,20 @@ const Sample = () => {
<p className="text-gray-400 text-center">
A way to share stories anonymously.
</p>
<div className="flex mt-4 space-x-4 items-baseline justify-center md:items-start md:justify-start">
<a href="https://twitter.com/" target="_blank">
<FaXTwitter className="dark:text-white text-2xl" />
<div className='flex mt-4 space-x-4 items-center justify-center md:items-start md:justify-start'>
<a href='https://twitter.com/girlscriptsoc' target='_blank'>
<FaXTwitter className='dark:text-white text-2xl hover:scale-125 hover:fill-cyan-700' />
</a>
<a href="https://www.instagram.com/raw_shots29/" target="_blank">
<FiInstagram className="dark:text-white text-2xl " />
<a href='https://www.instagram.com/raw_shots29/' target='_blank'>
<FiInstagram className='dark:text-white text-2xl hover:scale-125 hover:fill-cyan-700' />
</a>
<a
href="https://www.linkedin.com/in/sayak-bhunia-452419252/"
target="_blank"
>
<FaLinkedin className="dark:text-white text-2xl " />
<a href='https://www.linkedin.com/in/sayak-bhunia-452419252/' target='_blank'>
<FaLinkedin className='dark:text-white text-2xl hover:scale-125 hover:fill-cyan-700' />
</a>
<a
href="https://mail.google.com/mail/?view=cm&fs=1&to=sbhunia2903@gmail.com"
target="_blank"
>
<IoMdMail className="dark:text-white text-2xl " />
</a>
<a
href="https://github.com/Sayak-Bhunia/mystory/"
target="_blank"
>
<FaGithub className="dark:text-white text-2xl " />
<a href='https://github.com/Sayak-Bhunia/mystory/' target='_blank'>
<FaGithub className='dark:text-white text-2xl hover:scale-125 hover:fill-cyan-700' />
</a>
</div>
<a
href="/docs/privacy-policy"
className="text-md text-neutral-500 uppercase mt-2 hover:underline hover:underline-offset-4"
>
Privacy Policy
</a>
<a
href="/docs/terms"
className="text-md text-neutral-500 uppercase hover:underline hover:underline-offset-4"
>
TERMS AND CONDITIONS
</a>
</div>
<ChangingHello />
</div>

Expand Down
Loading