Merge pull request #8 from rede5/codex/verificar-erro-no-deploy-da-landing

Fix Deno deploy dependency resolution
This commit is contained in:
Tiago Yamamoto 2025-12-11 19:16:20 -03:00 committed by GitHub
commit 9ebf84583e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 6 deletions

View file

@ -26,14 +26,14 @@
"preact/": "https://esm.sh/preact@10.22.0/", "preact/": "https://esm.sh/preact@10.22.0/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2", "@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1", "@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1", "tailwindcss": "https://esm.sh/tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/", "tailwindcss/": "https://esm.sh/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js", "tailwindcss/plugin": "https://esm.sh/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.216.0/" "$std/": "https://deno.land/std@0.216.0/"
}, },
"compilerOptions": { "compilerOptions": {
"jsx": "react-jsx", "jsx": "react-jsx",
"jsxImportSource": "preact" "jsxImportSource": "preact"
}, },
"nodeModulesDir": true "nodeModulesDir": "auto"
} }

View file

@ -1,7 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" role="img" aria-label="Core DevOps"> <svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 64 64"
role="img"
aria-label="Core DevOps"
>
<rect width="64" height="64" rx="14" fill="#0f172a" /> <rect width="64" height="64" rx="14" fill="#0f172a" />
<circle cx="24" cy="24" r="6" fill="#22d3ee" /> <circle cx="24" cy="24" r="6" fill="#22d3ee" />
<circle cx="40" cy="40" r="6" fill="#22d3ee" /> <circle cx="40" cy="40" r="6" fill="#22d3ee" />
<path d="M24 24h16v4H24z" fill="#f8fafc" /> <path d="M24 24h16v4H24z" fill="#f8fafc" />
<path d="m28 32-6 8h-6l6-8-6-8h6l6 8Zm8 0 6-8h6l-6 8 6 8h-6l-6-8Z" fill="#f8fafc" /> <path
d="m28 32-6 8h-6l6-8-6-8h6l6 8Zm8 0 6-8h6l-6 8 6 8h-6l-6-8Z"
fill="#f8fafc"
/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 394 B

After

Width:  |  Height:  |  Size: 413 B