Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… into feat/add-prettier
  • Loading branch information
ashmit-coder committed Jun 25, 2024
2 parents 5cb4034 + ae1f633 commit 856878c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion components/Footer/footer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import Image from "next/image";
import Link from "next/link";

function Footer() {
const socials = [
Expand All @@ -22,7 +23,15 @@ function Footer() {
return (
<div className="container">
<div className="w-full flex justify-between items-center p-4 sm:flex-col sm:gap-3">
<Image src="/img/logo.png" alt="company logo" width={150} height={42} />
<Link href="/">
<Image
className="cursor-pointer"
src="/img/logo.png"
alt="company logo"
width={150}
height={42}
/>
</Link>
<div className="sm:hidden">
{/* This div helps keep the text centered */}
</div>
Expand Down

0 comments on commit 856878c

Please sign in to comment.