Tasarım düzenlemeleri

This commit is contained in:
Sedat ÖZTÜRK 2025-05-14 10:41:56 +03:00
parent 08e3d01291
commit 9de0296169
6 changed files with 21 additions and 21 deletions

View file

@ -82,7 +82,7 @@ define(['./workbox-54d0af47'], (function (workbox) { 'use strict';
"revision": "3ca0b8505b4bec776b69afdba2768812"
}, {
"url": "index.html",
"revision": "0.8f1s6la51s8"
"revision": "0.v26qf4kt408"
}], {});
workbox.cleanupOutdatedCaches();
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

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

View file

@ -12,32 +12,32 @@ const Side = ({ children, content, ...rest }: SideProps) => {
return (
<div className="grid lg:grid-cols-3 h-full">
<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={{
backgroundImage: `url('/img/others/auth-side-bg.jpg')`,
}}
>
<Logo mode="dark" />
<div>
<div className="mb-6 flex items-center gap-4">
<Avatar
className="border-2 border-white"
shape="circle"
src="/img/others/cto.png"
/>
<div className="text-white">
<div className="font-semibold text-base">Sedat ÖZTÜRK</div>
<span className="opacity-80">CTO</span>
<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 className="mb-6 flex items-center gap-4">
<Avatar className="border-2 border-white" shape="circle" src="/img/others/cto.png" />
<div className="text-white">
<div className="font-semibold text-base">Sedat ÖZTÜRK</div>
<span className="opacity-80">CTO</span>
</div>
</div>
<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.
</p>
</div>
<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.
</p>
<span className="text-white">
Copyright &copy; {`${new Date().getFullYear()}`}{' '}
<span className="font-semibold">{`${APP_NAME}`}</span>{' '}
</span>
</div>
<span className="text-white">
Copyright &copy; {`${new Date().getFullYear()}`}{' '}
<span className="font-semibold">{`${APP_NAME}`}</span>{' '}
</span>
</div>
<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]">

View file

@ -16,7 +16,7 @@ const Captcha = forwardRef((props: CaptchaProps, ref: Ref<TurnstileInstance>) =>
<Turnstile
ref={ref}
className={className ?? 'mb-4 mx-auto'}
siteKey="0x4AAAAAAAGadwQME-GSYuJU"
siteKey="0x4AAAAAABdEjmiXxcl0j7jp"
onError={onError}
onExpire={onExpire}
onSuccess={onSuccess}