Add logo component and social links
This commit is contained in:
9
web/components/ui/Logo/Logo.module.scss
Normal file
9
web/components/ui/Logo/Logo.module.scss
Normal file
@@ -0,0 +1,9 @@
|
||||
.logo {
|
||||
width: 120px;
|
||||
border-radius: 50%;
|
||||
border-width: 3px;
|
||||
border-style: solid;
|
||||
border-color: var(--theme-primary-color);
|
||||
background-color: var(--theme-background-secondary);
|
||||
padding: 3px;
|
||||
}
|
||||
5
web/components/ui/Logo/Logo.tsx
Normal file
5
web/components/ui/Logo/Logo.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import s from './Logo.module.scss';
|
||||
|
||||
export default function SocialLinks() {
|
||||
return <img className={s.logo} src="/logo" alt="logo" />;
|
||||
}
|
||||
Reference in New Issue
Block a user