From 4dde25ade771452126eef7e77e8fb7b2a9d9964e Mon Sep 17 00:00:00 2001 From: saulo paiva Date: Thu, 7 Sep 2023 10:09:43 -0300 Subject: [PATCH 1/6] update astro and core dependencies --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 47b52e9..f828b91 100644 --- a/package.json +++ b/package.json @@ -11,13 +11,13 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/mdx": "^0.19.7", - "@astrojs/partytown": "^1.0.3", - "@astrojs/tailwind": "^3.0.0", + "@astrojs/mdx": "^1.0.2", + "@astrojs/partytown": "^2.0.0", + "@astrojs/tailwind": "^5.0.0", "@typescript-eslint/eslint-plugin": "^5.50.0", "@typescript-eslint/parser": "^5.50.0", "accessible-astro-components": "^2.2.0", - "astro": "^2.0.1", + "astro": "^3.0.10", "astro-compress": "^2.0.6", "astro-icon": "^0.7.3", "eslint": "^8.33.0", From 563953dcebbf36e38801dcfcb3801b062a87b889 Mon Sep 17 00:00:00 2001 From: saulo paiva Date: Thu, 7 Sep 2023 10:14:05 -0300 Subject: [PATCH 2/6] Use new image component for logo --- src/components/Navigation.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Navigation.astro b/src/components/Navigation.astro index 9af8549..8aba2e5 100644 --- a/src/components/Navigation.astro +++ b/src/components/Navigation.astro @@ -1,12 +1,14 @@ --- import ResponsiveToggle from './ResponsiveToggle.astro' import { DarkMode } from 'accessible-astro-components' +import { Image } from "astro:assets" +import logo from "../assets/img/logo.svg" ---