Upgrade design & moved backend here & login and settings work with api

This commit is contained in:
2024-09-29 18:04:41 +02:00
parent 42d3212624
commit f2d1eb4289
43 changed files with 1881 additions and 359 deletions
+61
View File
@@ -0,0 +1,61 @@
import { SVGProps } from 'react';
const StatsIcon = (props?: SVGProps<SVGSVGElement>) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 512 512'
{...props}
>
<path
d='M32 32v432a16 16 0 0016 16h432'
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth='24'
/>
<rect
x='96'
y='224'
width='80'
height='192'
rx='20'
ry='20'
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth='24'
/>
<rect
x='240'
y='176'
width='80'
height='240'
rx='20'
ry='20'
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth='24'
/>
<rect
x='383.64'
y='112'
width='80'
height='304'
rx='20'
ry='20'
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth='24'
/>
</svg>
);
};
export default StatsIcon;