diff --git a/bun.lockb b/bun.lockb index 2c12b42..db881bb 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 6c4474e..03f3f51 100644 --- a/package.json +++ b/package.json @@ -1,27 +1,29 @@ { - "name": "dev-portfolio", - "type": "module", - "version": "3.0.1", - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "@astrojs/svelte": "^4.0.2", - "@astrojs/tailwind": "^5.0.0", - "astro": "^3.2.0", - "caniuse-lite": "^1.0.30001669", - "moment": "^2.30.1", - "moment-timezone": "^0.5.45", - "svelte": "^4.2.1", - "tailwindcss": "^3.3.3" - }, - "devDependencies": { - "prettier": "^3.0.3", - "prettier-plugin-astro": "^0.12.0", - "prettier-plugin-svelte": "^3.0.3" - } + "name": "dev-portfolio", + "type": "module", + "version": "3.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "@astrojs/svelte": "^5.7.2", + "@astrojs/tailwind": "^5.0.0", + "astro": "^4.16.8", + "caniuse-lite": "^1.0.30001669", + "moment": "^2.30.1", + "moment-timezone": "^0.5.45", + "svelte": "^5.1.9", + "tailwindcss": "^3.3.3", + "typescript": "^5.6.3" + }, + "devDependencies": { + "prettier": "^3.0.3", + "prettier-plugin-astro": "^0.14.1", + "prettier-plugin-svelte": "^3.0.3", + "@sveltejs/vite-plugin-svelte": "^4.0.0-next.6" + } } diff --git a/src/components/sections/IntroComponent.svelte b/src/components/sections/IntroComponent.svelte index b301000..f0413e6 100644 --- a/src/components/sections/IntroComponent.svelte +++ b/src/components/sections/IntroComponent.svelte @@ -9,7 +9,7 @@ "Content creator", "Student", ]; - let roleState: string = ""; + let roleState: string = $state(""); let role: string; let counter: number = 0; let roleEmpty: boolean = true; @@ -82,7 +82,7 @@ greeting = "evening"; } - let greetingState: string = ""; + let greetingState: string = $state(""); let greetingPulse: HTMLElement; async function animateGreeting(greeting: string) { diff --git a/src/components/sections/ProjectsComponent.svelte b/src/components/sections/ProjectsComponent.svelte index 356031b..bf73b84 100644 --- a/src/components/sections/ProjectsComponent.svelte +++ b/src/components/sections/ProjectsComponent.svelte @@ -1,6 +1,4 @@