Skip to content

Commit

Permalink
Merge pull request #289 from lade6501/issue#241-Footer-Links
Browse files Browse the repository at this point in the history
Fix: footer links #241
  • Loading branch information
RamakrushnaBiswal authored Oct 15, 2024
2 parents 99c2b0d + fff5972 commit edf6abf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions frontend/src/components/Shared/footer/Content.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useEffect, useState } from 'react';
import Logo from '../../../assets/Logo/playcafe.png';
import googleImage from "../../../assets/img/google.png"
import googleImage from '../../../assets/img/google.png';
import { FaFacebook, FaInstagram, FaTiktok, FaGithub } from 'react-icons/fa';
import GoogleTranslate from "../GoogleTranslate";
import GoogleTranslate from '../GoogleTranslate';

export default function Content() {
return (
Expand Down Expand Up @@ -66,11 +66,11 @@ const Nav = () => {
},
{
name: 'Events',
link: '/event',
link: '/events',
},
{
name: 'Reservation',
link: '/register',
link: '/reservation',
},
{
name: 'Boardgame',
Expand Down Expand Up @@ -147,16 +147,16 @@ const Nav = () => {
<a href="tel:+17189711684" className="mb-2 hover:underline">
718-971-1684
</a>

{/* <div className="flex items-center justify-center mt-4">
<img
src={googleImage}
alt="Google Translate"
className="w-[2rem] h-[2rem] mr-[65px]"
/>
</div> */}
<GoogleTranslate/>
<GoogleTranslate />
</div>
</div>
);
};
};

0 comments on commit edf6abf

Please sign in to comment.