Merge branch 'master' of gitlab.prodcontest.ru:team-15/project

This commit is contained in:
ITQ
2025-03-01 23:34:47 +03:00
3 changed files with 11 additions and 4 deletions
@@ -1,10 +1,17 @@
const DataRush = ({ size = 52 }: { size?: number }) => { const DataRush = ({
size = 52,
className,
}: {
size?: number;
className?: string;
}) => {
return ( return (
<svg <svg
height={size} height={size}
viewBox="0 0 149 52" viewBox="0 0 149 52"
fill="none" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
className={className}
> >
<rect width="149" height="52" fill="#333333" /> <rect width="149" height="52" fill="#333333" />
<path <path
+2 -2
View File
@@ -17,8 +17,8 @@ const LoginPage = () => {
}, []); }, []);
return ( return (
<div className="flex h-screen flex-col items-center gap-10 px-4 py-10 sm:gap-18 sm:py-18"> <div className="flex flex-col items-center gap-10 px-4 py-10 sm:gap-18 sm:py-18">
<DataRush size={52} /> <DataRush size={52} className="min-h-[52px]" />
<div className="flex w-full max-w-96 flex-col items-center gap-7"> <div className="flex w-full max-w-96 flex-col items-center gap-7">
<h1 className="text-center text-4xl font-semibold"> <h1 className="text-center text-4xl font-semibold">
Добро пожаловать! Добро пожаловать!
@@ -6,7 +6,7 @@ const NavbarLayout = () => {
<> <>
<Header /> <Header />
<div className="px-4 sm:px-6"> <div className="px-4 sm:px-6">
<div className="m-auto mt-6 w-full max-w-5xl"> <div className="m-auto my-6 w-full max-w-5xl">
<Outlet /> <Outlet />
</div> </div>
</div> </div>