Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwamartur committed Sep 9, 2024
1 parent fa7a715 commit 6f13d71
Show file tree
Hide file tree
Showing 4 changed files with 176 additions and 198 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
Expand Down
16 changes: 8 additions & 8 deletions components/shared/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
import Image from "next/image"
import Link from "next/link"
import Image from "next/image";
import Link from "next/link";

const Footer = () => {
return (
<footer className="border-t">
<div className="flex-center wrapper flex-between flex flex-col gap-4 p-5 text-center sm:flex-row">
<Link href='/'>
<Image
<Link href="/">
<Image
src="/assets/images/logo.svg"
alt="logo"
width={128}
height={38}
/>
</Link>

<p>2023 Evently. All Rights reserved.</p>
<p>2024 Evently. All Rights reserved.</p>
</div>
</footer>
)
}
);
};

export default Footer
export default Footer;
Loading

0 comments on commit 6f13d71

Please sign in to comment.