This commit is contained in:
rachit1977
2026-06-14 23:32:18 +07:00
parent 93c50e5cd7
commit 2f0e135fe6
3 changed files with 10 additions and 11 deletions
+3 -3
View File
@@ -29,12 +29,12 @@ export default async function HomePage() {
<AppShell> <AppShell>
<div className="space-y-6"> <div className="space-y-6">
<header className="flex flex-col gap-4 pt-2 sm:flex-row sm:items-center"> <header className="flex flex-col gap-4 pt-2 sm:flex-row sm:items-center">
<div className="h-16 w-16 shrink-0"> <div className="h-48 w-48 shrink-0">
<Image <Image
src="/4tech_logo.png" src="/4tech_logo.png"
alt="4TECH logo" alt="4TECH logo"
width={52} width={192}
height={52} height={192}
className="h-full w-full object-contain" className="h-full w-full object-contain"
priority priority
/> />
+4 -5
View File
@@ -15,18 +15,17 @@ export default async function LoginPage() {
<div className="w-full max-w-md"> <div className="w-full max-w-md">
<GlassCard className="p-7 sm:p-8"> <GlassCard className="p-7 sm:p-8">
<div className="mb-8 text-center"> <div className="mb-8 text-center">
<div className="mx-auto mb-4 h-20 w-20"> <div className="mx-auto mb-5 h-60 w-60 max-w-full">
<Image <Image
src="/4tech_logo.png" src="/4tech_logo.png"
alt="4TECH logo" alt="4TECH logo"
width={64} width={240}
height={64} height={240}
className="h-full w-full object-contain" className="h-full w-full object-contain"
priority priority
/> />
</div> </div>
<h1 className="text-3xl font-black tracking-wide">4TECH</h1> <p className="text-sm text-white/55">INNOVATION CO., LTD.</p>
<p className="mt-2 text-sm text-white/55">4TECH INNOVATION CO., LTD.</p>
</div> </div>
<LoginForm /> <LoginForm />
</GlassCard> </GlassCard>
+3 -3
View File
@@ -24,12 +24,12 @@ export async function AppShell({ children }: { children: React.ReactNode }) {
<div className="mx-auto flex min-h-screen w-full max-w-7xl flex-col gap-6 p-4 md:flex-row md:p-6"> <div className="mx-auto flex min-h-screen w-full max-w-7xl flex-col gap-6 p-4 md:flex-row md:p-6">
<aside className="glass flex h-fit flex-col rounded-2xl p-4 md:sticky md:top-6 md:w-64"> <aside className="glass flex h-fit flex-col rounded-2xl p-4 md:sticky md:top-6 md:w-64">
<Link href="/home" className="mb-6 flex items-center gap-3"> <Link href="/home" className="mb-6 flex items-center gap-3">
<div className="h-12 w-12 shrink-0"> <div className="h-36 w-36 shrink-0">
<Image <Image
src="/4tech_logo.png" src="/4tech_logo.png"
alt="4TECH logo" alt="4TECH logo"
width={40} width={144}
height={40} height={144}
className="h-full w-full object-contain" className="h-full w-full object-contain"
priority priority
/> />