Mobile vs Web

This commit is contained in:
2025-04-12 14:27:19 -04:00
parent c26ac57a5c
commit 92f84eebb7
5 changed files with 23 additions and 78 deletions

View File

@@ -0,0 +1,33 @@
"use client";
import React from "react";
import { useRouter } from "next/navigation";
const Footer = () => {
const router = useRouter();
return (
<div className="flex justify-around items-center py-10 bg-gray-100 border-t border-gray-300">
<button
onClick={() => router.push("/")}
className="text-blue-500 text-lg hover:underline"
>
Home
</button>
<button
onClick={() => router.push("/explore")}
className="text-blue-500 text-lg hover:underline"
>
Explore
</button>
<button
onClick={() => router.push("/profile")}
className="text-blue-500 text-lg hover:underline"
>
Profile
</button>
</div>
);
};
export default Footer;