fix(confidence-engine): prioritise mobile sign-in

This commit is contained in:
2026-09-09 14:20:27 +01:00
parent efdb0a29d1
commit 4d78c81773
3 changed files with 15 additions and 7 deletions
+8 -6
View File
@@ -2,11 +2,9 @@ import LoginForm from "@/components/login-form";
export default function LoginPage() {
return (
<main className="mx-auto flex min-h-[calc(100vh-57px)] max-w-[1200px] items-start gap-12 px-6 py-16 lg:flex-row">
<section className="flex-1 space-y-8 pr-0 lg:pr-8">
<div>
<h1 className="text-3xl font-bold tracking-tight text-teal-700">Confidence Engine</h1>
</div>
<main className="mx-auto grid min-h-[calc(100vh-57px)] max-w-[1200px] grid-cols-1 items-start gap-4 px-6 py-16 md:grid-cols-[minmax(0,1fr)_420px]">
<section className="space-y-8">
<h1 className="text-3xl font-bold tracking-tight text-teal-700">Confidence Engine</h1>
<div className="space-y-4 text-base leading-relaxed text-gray-700">
<h2 className="text-xl font-semibold tracking-tight text-gray-900">Get clearer about what{'\''}s really going on.</h2>
@@ -14,7 +12,9 @@ export default function LoginPage() {
<p>Describe the situation in your own words. Confidence Engine will help reconstruct what is known, what may be happening, and what is still unclear then let you decide what to explore further.</p>
<p className="text-gray-600">It doesn{'\''}t try to make the decision for you. The aim is to help you reach a clearer understanding so you can decide what to do with more confidence.</p>
</div>
</section>
<section className="space-y-8">
<section className="space-y-4">
<h2 className="text-sm font-semibold uppercase tracking-[.18em] text-teal-700/70">How it works</h2>
<ol className="space-y-3 text-base leading-relaxed text-gray-700">
@@ -28,7 +28,9 @@ export default function LoginPage() {
<p className="text-sm italic text-gray-500">Try it with something real.<br/>A decision you{'\''}re unsure about. A problem that doesn{'\''}t quite make sense. A situation where you feel you may be missing something.</p>
</section>
<LoginForm />
<section className="md:col-start-2 md:row-start-1">
<LoginForm />
</section>
</main>
);
}