pramudya-yb commited on
Commit ·
1ea086c
1
Parent(s): d070657
Add mix-blend-multiply to logos to fake transparency
Browse files
apps/web/src/components/routes/LandingPage.tsx
CHANGED
|
@@ -46,7 +46,7 @@ export function LandingPage() {
|
|
| 46 |
{/* Navbar */}
|
| 47 |
<nav className="w-full px-6 py-4 md:px-12 lg:px-16 flex items-center justify-between max-w-7xl mx-auto z-50 sticky top-0 bg-[var(--warm-cream)] border-b-2 border-[var(--oat-border)]">
|
| 48 |
<div className="flex items-center gap-3">
|
| 49 |
-
<img src="/logo.png" alt="Pram Logo" className="h-10 w-auto object-contain" />
|
| 50 |
<span className="font-headline font-semibold text-2xl tracking-[-0.64px] text-[var(--clay-black)] hidden sm:block">Pram</span>
|
| 51 |
</div>
|
| 52 |
<div className="flex items-center gap-2 sm:gap-4">
|
|
|
|
| 46 |
{/* Navbar */}
|
| 47 |
<nav className="w-full px-6 py-4 md:px-12 lg:px-16 flex items-center justify-between max-w-7xl mx-auto z-50 sticky top-0 bg-[var(--warm-cream)] border-b-2 border-[var(--oat-border)]">
|
| 48 |
<div className="flex items-center gap-3">
|
| 49 |
+
<img src="/logo.png" alt="Pram Logo" className="h-10 w-auto object-contain mix-blend-multiply" />
|
| 50 |
<span className="font-headline font-semibold text-2xl tracking-[-0.64px] text-[var(--clay-black)] hidden sm:block">Pram</span>
|
| 51 |
</div>
|
| 52 |
<div className="flex items-center gap-2 sm:gap-4">
|
apps/web/src/routes/forgot-password.tsx
CHANGED
|
@@ -242,7 +242,7 @@ function RouteComponent() {
|
|
| 242 |
if (!email) {
|
| 243 |
return (
|
| 244 |
<div className="flex h-screen w-full items-center justify-center bg-muted/30">
|
| 245 |
-
<img src="/logo.png" alt="Pram Logo" className="h-20 w-auto mb-8 absolute top-8" />
|
| 246 |
<StepEmail onNext={setEmail} />
|
| 247 |
</div>
|
| 248 |
);
|
|
@@ -250,7 +250,7 @@ function RouteComponent() {
|
|
| 250 |
|
| 251 |
return (
|
| 252 |
<div className="flex h-screen w-full items-center justify-center bg-muted/30">
|
| 253 |
-
<img src="/logo.png" alt="Pram Logo" className="h-20 w-auto mb-8 absolute top-8" />
|
| 254 |
<StepReset email={email} />
|
| 255 |
</div>
|
| 256 |
);
|
|
|
|
| 242 |
if (!email) {
|
| 243 |
return (
|
| 244 |
<div className="flex h-screen w-full items-center justify-center bg-muted/30">
|
| 245 |
+
<img src="/logo.png" alt="Pram Logo" className="h-20 w-auto mb-8 absolute top-8 mix-blend-multiply" />
|
| 246 |
<StepEmail onNext={setEmail} />
|
| 247 |
</div>
|
| 248 |
);
|
|
|
|
| 250 |
|
| 251 |
return (
|
| 252 |
<div className="flex h-screen w-full items-center justify-center bg-muted/30">
|
| 253 |
+
<img src="/logo.png" alt="Pram Logo" className="h-20 w-auto mb-8 absolute top-8 mix-blend-multiply" />
|
| 254 |
<StepReset email={email} />
|
| 255 |
</div>
|
| 256 |
);
|