Tasarım düzenlemeleri
This commit is contained in:
parent
08e3d01291
commit
9de0296169
6 changed files with 21 additions and 21 deletions
|
|
@ -82,7 +82,7 @@ define(['./workbox-54d0af47'], (function (workbox) { 'use strict';
|
||||||
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
||||||
}, {
|
}, {
|
||||||
"url": "index.html",
|
"url": "index.html",
|
||||||
"revision": "0.8f1s6la51s8"
|
"revision": "0.v26qf4kt408"
|
||||||
}], {});
|
}], {});
|
||||||
workbox.cleanupOutdatedCaches();
|
workbox.cleanupOutdatedCaches();
|
||||||
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 1.1 KiB |
BIN
ui/public/img/logo/Logo.png
Normal file
BIN
ui/public/img/logo/Logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 47 KiB |
|
|
@ -12,26 +12,25 @@ const Side = ({ children, content, ...rest }: SideProps) => {
|
||||||
return (
|
return (
|
||||||
<div className="grid lg:grid-cols-3 h-full">
|
<div className="grid lg:grid-cols-3 h-full">
|
||||||
<div
|
<div
|
||||||
className="bg-no-repeat bg-cover py-6 px-16 flex-col justify-between hidden lg:flex"
|
className="relative bg-no-repeat bg-cover py-6 px-16 flex-col justify-between hidden lg:flex"
|
||||||
style={{
|
style={{
|
||||||
backgroundImage: `url('/img/others/auth-side-bg.jpg')`,
|
backgroundImage: `url('/img/others/auth-side-bg.jpg')`,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Logo mode="dark" />
|
<div className="absolute inset-0 bg-black bg-opacity-50 z-0"></div>
|
||||||
|
<div className="relative z-10 flex flex-col h-full justify-between">
|
||||||
|
<Logo className="drop-shadow-md" />
|
||||||
<div>
|
<div>
|
||||||
<div className="mb-6 flex items-center gap-4">
|
<div className="mb-6 flex items-center gap-4">
|
||||||
<Avatar
|
<Avatar className="border-2 border-white" shape="circle" src="/img/others/cto.png" />
|
||||||
className="border-2 border-white"
|
|
||||||
shape="circle"
|
|
||||||
src="/img/others/cto.png"
|
|
||||||
/>
|
|
||||||
<div className="text-white">
|
<div className="text-white">
|
||||||
<div className="font-semibold text-base">Sedat ÖZTÜRK</div>
|
<div className="font-semibold text-base">Sedat ÖZTÜRK</div>
|
||||||
<span className="opacity-80">CTO</span>
|
<span className="opacity-80">CTO</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-lg text-white opacity-80">
|
<p className="text-lg text-white opacity-80">
|
||||||
From interactive desktop applications to immersive web and mobile solutions, we exist to meet your needs today and ensure continued success tomorrow.
|
From interactive desktop applications to immersive web and mobile solutions, we exist to
|
||||||
|
meet your needs today and ensure continued success tomorrow.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<span className="text-white">
|
<span className="text-white">
|
||||||
|
|
@ -39,6 +38,7 @@ const Side = ({ children, content, ...rest }: SideProps) => {
|
||||||
<span className="font-semibold">{`${APP_NAME}`}</span>{' '}
|
<span className="font-semibold">{`${APP_NAME}`}</span>{' '}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div className="col-span-2 flex flex-col justify-start sm:justify-center items-center bg-white dark:bg-gray-800">
|
<div className="col-span-2 flex flex-col justify-start sm:justify-center items-center bg-white dark:bg-gray-800">
|
||||||
<div className="w-full xl:max-w-[450px] px-8 max-w-[380px]">
|
<div className="w-full xl:max-w-[450px] px-8 max-w-[380px]">
|
||||||
<div className="mb-8">{content}</div>
|
<div className="mb-8">{content}</div>
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ const Captcha = forwardRef((props: CaptchaProps, ref: Ref<TurnstileInstance>) =>
|
||||||
<Turnstile
|
<Turnstile
|
||||||
ref={ref}
|
ref={ref}
|
||||||
className={className ?? 'mb-4 mx-auto'}
|
className={className ?? 'mb-4 mx-auto'}
|
||||||
siteKey="0x4AAAAAAAGadwQME-GSYuJU"
|
siteKey="0x4AAAAAABdEjmiXxcl0j7jp"
|
||||||
onError={onError}
|
onError={onError}
|
||||||
onExpire={onExpire}
|
onExpire={onExpire}
|
||||||
onSuccess={onSuccess}
|
onSuccess={onSuccess}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue