Skip to content

Commit

Permalink
Merge pull request #233 from Ayesha-Siddiqua88/feature/added-contact-…
Browse files Browse the repository at this point in the history
…in-footer

feature: added contact in footer
  • Loading branch information
Kritika30032002 authored Jun 7, 2024
2 parents 16fc686 + 4a782e9 commit 58657c1
Showing 1 changed file with 27 additions and 14 deletions.
41 changes: 27 additions & 14 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use client';
import { Open_Sans } from 'next/font/google';
import { IoMdMail } from "react-icons/io";
import { FiInstagram } from 'react-icons/fi';
import { FaLinkedin, FaGithub } from 'react-icons/fa';
import { FaXTwitter } from 'react-icons/fa6';
Expand All @@ -21,20 +22,32 @@ const Sample = () => {
<p className="text-gray-400 text-center">
A way to share stories anonymously.
</p>
<div class="flex mt-4 space-x-4 items-baseline justify-center md:items-start md:justify-start">
<a href="https://twitter.com/girlscriptsoc" target="_blank" aria-label="Twitter" title="Twitter">
<FaXTwitter class="dark:text-white text-2xl" />
</a>
<a href="https://www.instagram.com/raw_shots29/" target="_blank" aria-label="Instagram" title="Instagram">
<FiInstagram class="dark:text-white text-2xl" />
</a>
<a href="https://www.linkedin.com/in/sayak-bhunia-452419252/" target="_blank" aria-label="LinkedIn" title="LinkedIn">
<FaLinkedin class="dark:text-white text-2xl" />
</a>
<a href="https://github.com/Sayak-Bhunia/mystory/" target="_blank" aria-label="GitHub" title="GitHub">
<FaGithub class="dark:text-white text-2xl" />
</a>
</div>
<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" />
</a>
<a href="https://www.instagram.com/raw_shots29/" target="_blank">
<FiInstagram className="dark:text-white text-2xl " />
</a>
<a
href="https://www.linkedin.com/in/sayak-bhunia-452419252/"
target="_blank"
>
<FaLinkedin className="dark:text-white text-2xl " />
</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>
</div>
<a
href="/docs/privacy-policy"
className="text-md text-neutral-500 uppercase mt-2 hover:underline hover:underline-offset-4"
Expand Down

0 comments on commit 58657c1

Please sign in to comment.