Clean up the UI. Boring easy stuff honestly

This commit is contained in:
2025-03-19 15:09:06 -05:00
parent 329ee9dc0a
commit f5e3cb6234
12 changed files with 333 additions and 76 deletions

View File

@ -0,0 +1,22 @@
import { Button } from '@/components/ui/button';
import Image from 'next/image';
const MicrosoftSignIn = () => {
return (
<Button
className='flex flex-row items-center justify-center
dark:bg-white bg-slate-950 m-1 dark:hover:bg-slate-200
hover:bg-slate-700 w-full'
>
<Image
src='/images/microsoft_logo.png'
alt='Microsoft Logo'
width={20} height={20}
/>
<p className='font-semibold dark:text-slate-950'>
Sign in with Microsoft
</p>
</Button>
);
};
export default MicrosoftSignIn;