[#37] Login & Register Page UI

https://project.mdnd-it.cc/work_packages/37
This commit is contained in:
2025-05-16 20:08:24 +00:00
parent a231fa4b5e
commit f089d314ca
18 changed files with 561 additions and 21 deletions
@@ -0,0 +1,15 @@
import React from 'react';
import logo from './Logo.png';
const Logo = ({ size = 100 }) => (
<img
src={logo}
alt="Logo"
width={size}
height={size}
style={{ objectFit: 'contain' }}
/>
);
export default Logo;