Skip to content

Commit 9ffdc3d

Browse files
authored
Merge pull request #14 from wajeshubham/dev
Add bug reporting and feature request link
2 parents 7e0f8b8 + 8a3f892 commit 9ffdc3d

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

layout/Footer.tsx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
import { BugAntIcon, RocketLaunchIcon } from "@heroicons/react/24/outline";
12
import Link from "next/link";
23
import React from "react";
34

45
const Footer = () => {
56
return (
67
<footer className="w-full bg-transparent">
7-
<div className="w-full h-16 gap-4 text-xs dark:text-zinc-400 text-zinc-600 flex justify-center items-center max-w-7xl mx-auto px-4 sm:px-8 lg:px-12">
8+
<div className="w-full py-10 gap-5 text-xs dark:text-zinc-400 text-zinc-600 flex justify-center items-center flex-wrap max-w-7xl mx-auto px-4 sm:px-8 lg:px-12">
89
<Link
910
className="hover:underline hover:dark:text-white hover:text-zinc-900"
1011
href="https://www.github.com/wajeshubham"
@@ -35,6 +36,18 @@ const Footer = () => {
3536
>
3637
Blogs
3738
</Link>
39+
<Link
40+
className="inline-flex hover:underline hover:dark:text-white hover:text-zinc-900"
41+
href="https://github.com/wajeshubham/snippng/issues/new"
42+
>
43+
<BugAntIcon className="w-4 h-4 mr-1" /> Report a bug
44+
</Link>
45+
<Link
46+
className="inline-flex hover:underline hover:dark:text-white hover:text-zinc-900"
47+
href="https://github.com/wajeshubham/snippng/issues/new"
48+
>
49+
<RocketLaunchIcon className="w-4 h-4 mr-1" /> Request a feature
50+
</Link>{" "}
3851
</div>
3952
</footer>
4053
);

0 commit comments

Comments
 (0)