💄 style: create signin button and refine the navbar layouts

This commit is contained in:
2026-01-07 09:14:36 +07:00
parent a82e7a7424
commit c6040ed79a
3 changed files with 90 additions and 9 deletions

View File

@ -0,0 +1,15 @@
import { Button } from "@/shared/libs/shadcn/ui/button";
import { LogIn } from "lucide-react";
const SignIn = () => {
return (
<div>
<Button className="cursor-pointer">
<LogIn />
Sign In
</Button>
</div>
);
};
export default SignIn;