diff --git a/astro.config.ts b/astro.config.ts index e15654c..08e22f3 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -1,5 +1,4 @@ import { defineConfig } from "astro/config"; -import tailwind from "@astrojs/tailwind"; import autoprefixer from "autoprefixer"; import cssnano from "cssnano"; import node from "@astrojs/node"; @@ -10,7 +9,7 @@ import image from "@astrojs/image"; // https://astro.build/config export default defineConfig({ site: "https://commandee-web-production.up.railway.app", - integrations: [tailwind(), sitemap(), image({ + integrations: [sitemap(), image({ serviceEntryPoint: "@astrojs/image/sharp" })], output: "server", diff --git a/public/icons/commandee_favicon.ico b/public/icons/commandee_favicon.ico new file mode 100644 index 0000000..7b24085 Binary files /dev/null and b/public/icons/commandee_favicon.ico differ diff --git a/public/logos/commandee_logo.png b/public/logos/commandee_logo.png new file mode 100644 index 0000000..8d652c4 Binary files /dev/null and b/public/logos/commandee_logo.png differ diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 3a4f9e1..e61eb00 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -8,16 +8,15 @@ > -
© 2023 Commandee Inc.
@@ -56,9 +55,18 @@ justify-content: center; align-items: center; gap: 0.5rem; + + } + + nav a{ + color: var(--textolight); } nav a:hover { color: lightgrey; } + + li>a>img:hover { + transform: scale(1.1); + } diff --git a/src/components/FormCadastro.astro b/src/components/FormCadastro.astro index c5820c3..85cfc9e 100644 --- a/src/components/FormCadastro.astro +++ b/src/components/FormCadastro.astro @@ -9,28 +9,14 @@ import Form from "./Form.astro";