Skip to content

Commit

Permalink
feat: remove button
Browse files Browse the repository at this point in the history
  • Loading branch information
louisjoecodes committed Dec 5, 2024
1 parent fc7e7cd commit c3d041e
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
"use client";

import { christmasFont } from "@/components/custom-fonts";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { cn } from "@/lib/utils";
import { useRouter } from "next/navigation";

export default function Page() {
const router = useRouter();

return (
<div
className={cn(
Expand Down Expand Up @@ -73,15 +69,6 @@ export default function Page() {
</strong>
</span>
</div>
<div className="px-4 pb-4">
<Button
onClick={() => router.push("/")}
className="w-full"
variant="destructive"
>
I Understand
</Button>
</div>
</Card>
</div>
);
Expand Down

0 comments on commit c3d041e

Please sign in to comment.