diff --git a/deno.json b/deno.json index 92df12c..ad7a195 100644 --- a/deno.json +++ b/deno.json @@ -1,4 +1,11 @@ { + "compilerOptions": { + "jsx": "react-jsx", + "jsxImportSource": "react" + }, + "imports": { + "@/": "./" + }, "lint": { "rules": { "tags": ["recommended", "jsx"], diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index 2e20ad9..2db7b32 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -1,17 +1,18 @@ --- -import { Image } from 'astro:assets'; -import { Button } from 'src/components/ui/button' +import { Image } from "astro:assets"; +import { Button } from "src/components/ui/button"; --- - - \ No newline at end of file + .blanco { + background-color: rgb(191, 240, 186); + color: #01833d; + border: 2px solid #01833d; + padding: 1rem 2rem; + border-radius: 0.5rem; + font-weight: bold; + } +