Fix cron deployment by isolating config and boost fog visibility

This commit is contained in:
Avery Felts 2026-01-27 23:33:31 -07:00
parent 9201171936
commit 5dedd4c1d5
2 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@
"build:worker": "opennextjs-cloudflare build",
"dev:worker": "wrangler dev",
"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",
"d1:migrate": "wrangler d1 migrations apply quit-smoking-db --local",
"d1:migrate:prod": "wrangler d1 migrations apply quit-smoking-db --remote"

View File

@ -224,13 +224,13 @@ export function UserHeader({ user, preferences }: UserHeaderProps) {
backdropFilter: 'blur(10px)',
}}>
{/* 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-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 -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 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/20 rounded-full blur-3xl animate-float" style={{ animationDuration: '18s', animationDelay: '-2s' }} />
{/* 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-2" />
</div>