Skip to content

Commit

Permalink
refactor: add cookie button to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhall1515 committed May 5, 2024
1 parent d35a6b2 commit e38ee14
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import ThemeToggle from "@/components/themeToggle";
import { env } from "@/env/client";

import ButtonCookie from "./btnCookie";

export default function Footer() {
const year = new Date().getFullYear();
return (
Expand All @@ -22,7 +24,7 @@ export default function Footer() {
<a href="#">Customer Support</a>
</li>
<li className="me-4 last:mr-0 md:mr-6">
<a href="#">Privacy Settings</a>
<ButtonCookie />
</li>
<li className="me-4 last:mr-0 md:mr-6">
<a href="#">Terms</a>
Expand Down

0 comments on commit e38ee14

Please sign in to comment.