Fix cron deployment by isolating config and boost fog visibility
This commit is contained in:
parent
9201171936
commit
5dedd4c1d5
@ -11,7 +11,7 @@
|
|||||||
"build:worker": "opennextjs-cloudflare build",
|
"build:worker": "opennextjs-cloudflare build",
|
||||||
"dev:worker": "wrangler dev",
|
"dev:worker": "wrangler dev",
|
||||||
"deploy:app": "bun run build:worker && wrangler deploy",
|
"deploy:app": "bun run build:worker && wrangler deploy",
|
||||||
"deploy:cron": "cd cron-worker && wrangler deploy",
|
"deploy:cron": "cd cron-worker && wrangler deploy --config wrangler.toml",
|
||||||
"deploy": "bun run deploy:app && bun run deploy:cron",
|
"deploy": "bun run deploy:app && bun run deploy:cron",
|
||||||
"d1:migrate": "wrangler d1 migrations apply quit-smoking-db --local",
|
"d1:migrate": "wrangler d1 migrations apply quit-smoking-db --local",
|
||||||
"d1:migrate:prod": "wrangler d1 migrations apply quit-smoking-db --remote"
|
"d1:migrate:prod": "wrangler d1 migrations apply quit-smoking-db --remote"
|
||||||
|
|||||||
@ -224,13 +224,13 @@ export function UserHeader({ user, preferences }: UserHeaderProps) {
|
|||||||
backdropFilter: 'blur(10px)',
|
backdropFilter: 'blur(10px)',
|
||||||
}}>
|
}}>
|
||||||
{/* Cloudy/Foggy effect overlay */}
|
{/* Cloudy/Foggy effect overlay */}
|
||||||
<div className="absolute inset-0 pointer-events-none opacity-30 select-none">
|
<div className="absolute inset-0 pointer-events-none select-none">
|
||||||
<div className="absolute -top-10 -left-10 w-64 h-64 bg-neutral-200/40 rounded-full blur-3xl animate-float" style={{ animationDuration: '15s', animationDelay: '0s' }} />
|
<div className="absolute -top-10 -left-10 w-64 h-64 bg-neutral-200/40 rounded-full blur-3xl animate-float" style={{ animationDuration: '15s', animationDelay: '0s' }} />
|
||||||
<div className="absolute top-1/2 left-1/3 w-96 h-32 bg-slate-300/30 rounded-full blur-3xl animate-float" style={{ animationDuration: '20s', animationDelay: '-5s' }} />
|
<div className="absolute top-1/2 left-1/3 w-96 h-32 bg-indigo-500/10 rounded-full blur-3xl animate-float" style={{ animationDuration: '20s', animationDelay: '-5s' }} />
|
||||||
<div className="absolute -bottom-10 right-0 w-80 h-80 bg-stone-200/30 rounded-full blur-3xl animate-float" style={{ animationDuration: '18s', animationDelay: '-2s' }} />
|
<div className="absolute -bottom-10 right-0 w-80 h-80 bg-stone-200/20 rounded-full blur-3xl animate-float" style={{ animationDuration: '18s', animationDelay: '-2s' }} />
|
||||||
|
|
||||||
{/* Subtle moving fog layers - CSS procedural animation */}
|
{/* Subtle moving fog layers - CSS procedural animation */}
|
||||||
<div className="absolute inset-0 z-10 opacity-60 pointer-events-none" style={{ filter: theme === 'dark' ? 'invert(1)' : 'none' }}>
|
<div className="absolute inset-0 z-10 opacity-70 pointer-events-none" style={{ filter: theme === 'dark' ? 'invert(1)' : 'none' }}>
|
||||||
<div className="absolute inset-0 fog-layer-1" />
|
<div className="absolute inset-0 fog-layer-1" />
|
||||||
<div className="absolute inset-0 fog-layer-2" />
|
<div className="absolute inset-0 fog-layer-2" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user