[WEB-4542] feat: god mode auth revamp and code refactor (#7563)

* chore: auth color updated and remove unused tokens

* chore: god-mode brand revamp

* fix: space app spinner logo
This commit is contained in:
Anmol Singh Bhatia 2025-08-11 18:46:23 +05:30 committed by GitHub
parent 047080a66f
commit d317755ab9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 358 additions and 418 deletions

View file

@ -0,0 +1,12 @@
"use client";
import Link from "next/link";
import { PlaneLockup } from "@plane/ui";
export const AuthHeader = () => (
<div className="flex items-center justify-between gap-6 w-full flex-shrink-0 sticky top-0">
<Link href="/">
<PlaneLockup height={20} width={95} className="text-custom-text-100" />
</Link>
</div>
);