💄 style: create signin button and refine the navbar layouts
This commit is contained in:
15
shared/widgets/navbar/components/SignIn.tsx
Normal file
15
shared/widgets/navbar/components/SignIn.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user