diff --git a/.gitignore b/.gitignore
index 9821818a..309ca5df 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,3 +39,6 @@ yarn-error.log*
# Synk
.dccache
+.yarn
+.pnp.cjs
+.pnp.loader.mjs
diff --git a/.nvmrc b/.nvmrc
index 9a2a0e21..53d1c14d 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-v20
+v22
diff --git a/.prettierrc.json b/.prettierrc.json
deleted file mode 100644
index d8b0a72b..00000000
--- a/.prettierrc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "semi": true,
- "tabWidth": 2,
- "printWidth": 100,
- "singleQuote": true,
- "trailingComma": "none",
- "arrowParens": "avoid",
- "bracketSameLine": true
-}
diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz
deleted file mode 100644
index a2d96f6d..00000000
Binary files a/.yarn/install-state.gz and /dev/null differ
diff --git a/.yarnrc.yml b/.yarnrc.yml
deleted file mode 100644
index 3186f3f0..00000000
--- a/.yarnrc.yml
+++ /dev/null
@@ -1 +0,0 @@
-nodeLinker: node-modules
diff --git a/app/api/spotify/currently-listening/route.js b/app/api/spotify/currently-listening/route.js
index ecc8812a..d4f94c14 100644
--- a/app/api/spotify/currently-listening/route.js
+++ b/app/api/spotify/currently-listening/route.js
@@ -6,6 +6,7 @@ export async function GET() {
const response = await getCurrentlyListening();
if (!response) {
+ console.log(response);
return NextResponse.json({ error: 'Spotify not available' }, { status: 503 });
}
diff --git a/components/about/about.jsx b/components/about/about.jsx
index d9793077..0827fb56 100644
--- a/components/about/about.jsx
+++ b/components/about/about.jsx
@@ -12,9 +12,9 @@ import cn from 'classnames';
const goals = [
{ title: 'First Node.js contribution', progress: 100 },
- { title: 'Work fully remote', progress: 90 },
+ { title: 'Work fully remote', progress: 100 },
+ { title: 'Make my first public talk', progress: 50 },
{ title: 'Learn Rust as I know JavaScript', progress: 40 },
- { title: 'Make my first public talk', progress: 30 },
];
const About = ({ ...props }) => {
@@ -42,7 +42,7 @@ const About = ({ ...props }) => {
{/* Intro */}
- I'm a Senior Developer based in Milan 🤌
+ I'm a Software Engineer based in Milan 🤌
{/* Profile */}
@@ -61,7 +61,7 @@ const About = ({ ...props }) => {
diff --git a/components/about/about.module.css b/components/about/about.module.css
index 34bc363d..75611e35 100644
--- a/components/about/about.module.css
+++ b/components/about/about.module.css
@@ -1,9 +1,5 @@
.root {
- margin: auto 0 4rem;
- display: flex;
- flex-direction: column;
font-size: 14px;
- min-height: calc(100vh);
}
.title {
@@ -14,7 +10,7 @@
}
.intro {
- margin: 2rem auto 0 auto;
+ /* margin: 2rem auto 0 auto; */
width: 100%;
}
@@ -32,9 +28,9 @@
}
.profileContainer {
- width: 80%;
- margin: 1rem auto 1rem auto;
+ /* margin: 1rem auto 1rem auto; */
@apply rounded-lg shadow-lg;
+ padding: 2rem 0 2rem 0;
}
.profileInner {
@@ -48,8 +44,7 @@
}
.profileImage {
- margin: 0 auto 1rem auto;
- padding: 1rem 0 3rem 0;
+ margin: auto;
overflow: hidden;
@apply w-20 h-20 rounded-full shadow-lg;
}
diff --git a/components/hero/hero.jsx b/components/hero/hero.jsx
index 0556f8c4..a235a1b0 100644
--- a/components/hero/hero.jsx
+++ b/components/hero/hero.jsx
@@ -45,7 +45,7 @@ export default function Hero({ article, ...props }) {
{/* Last Article */}
-
+
From the Blog
diff --git a/components/hero/hero.module.css b/components/hero/hero.module.css
index 66d725d1..bd2689cd 100644
--- a/components/hero/hero.module.css
+++ b/components/hero/hero.module.css
@@ -3,7 +3,7 @@
display: flex;
flex-direction: column;
font-size: 14px;
- min-height: calc(100vh);
+ /* min-height: calc(100vh); */
}
.container {
diff --git a/components/spotify/player/player.jsx b/components/spotify/player/player.jsx
index c1c82c57..8640ba70 100644
--- a/components/spotify/player/player.jsx
+++ b/components/spotify/player/player.jsx
@@ -21,7 +21,14 @@ const Player = () => {
const url = listening?.isPlaying ? listening.url : `${config.baseUrl}/spotify`;
- const progress = useMemo(() => listening && (listening.progress / listening.duration) * 100, [listening]);
+ const progress = useMemo(() => {
+ if (listening?.isPlaying) {
+ const duration = listening.duration;
+ const progress = listening.progress;
+ return (progress / duration) * 100;
+ }
+ return 0;
+ }, [listening]);
return (
<>
@@ -36,12 +43,12 @@ const Player = () => {
href={url}
>
{listening?.isPlaying ? (
-
+
{/* eslint-disable-next-line @next/next/no-img-element */}
) : (
-
+
)}
@@ -60,7 +67,7 @@ const Player = () => {
rel="noopener noreferer noreferrer"
title="Mateo Nunez on Spotify"
>
-
+
diff --git a/lib/spotify.js b/lib/spotify.js
index a96ae22e..eeb4f07f 100644
--- a/lib/spotify.js
+++ b/lib/spotify.js
@@ -32,6 +32,7 @@ const getAccessToken = async () => {
export const getCurrentlyListening = async () => {
const { access_token: accessToken } = await getAccessToken();
if (!accessToken) {
+ console.log('accessToken', accessToken);
return;
}
diff --git a/package.json b/package.json
index dc0b4090..c2036b4e 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
"format": "biome format ./ --write"
},
"dependencies": {
- "next": "^14.2.3",
+ "next": "^15.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
@@ -18,7 +18,7 @@
"@elgorditosalsero/react-gtm-hook": "^2.7.2",
"@mdx-js/loader": "^3.0.1",
"@octokit/graphql": "^8.1.1",
- "@tailwindcss/typography": "^0.5.13",
+ "@tailwindcss/typography": "^0.5.15",
"@vercel/analytics": "^1.2.2",
"autoprefixer": "^10.4.19",
"classnames": "^2.5.1",
@@ -36,6 +36,6 @@
"swr": "^2.2.5",
"tailwindcss": "^3.4.1"
},
- "packageManager": "yarn@4.2.2",
+ "packageManager": "yarn@4.5.3",
"author": "mateonunez"
}
diff --git a/public/images/profile.jpg b/public/images/profile.jpg
index 88e3fdc1..1b946324 100644
Binary files a/public/images/profile.jpg and b/public/images/profile.jpg differ
diff --git a/public/site.webmanifest b/public/site.webmanifest
index 7eb1da0c..ef7ed8b7 100644
--- a/public/site.webmanifest
+++ b/public/site.webmanifest
@@ -6,7 +6,7 @@
"start_url": "/",
"name": "Mateo Nunez | ",
"short_name": "Mateo Nunez",
- "description": "Mateo Nunez | Senior Developer",
+ "description": "Mateo Nunez | Software Engineer",
"icons": [
{
"src": "/icon-192x192.png",
diff --git a/yarn.lock b/yarn.lock
index 85ddff76..2ebc8680 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -381,6 +381,15 @@ __metadata:
languageName: node
linkType: hard
+"@emnapi/runtime@npm:^1.2.0":
+ version: 1.3.1
+ resolution: "@emnapi/runtime@npm:1.3.1"
+ dependencies:
+ tslib: "npm:^2.4.0"
+ checksum: 10c0/060ffede50f1b619c15083312b80a9e62a5b0c87aa8c1b54854c49766c9d69f8d1d3d87bd963a647071263a320db41b25eaa50b74d6a80dcc763c23dbeaafd6c
+ languageName: node
+ linkType: hard
+
"@img/sharp-darwin-arm64@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-darwin-arm64@npm:0.33.3"
@@ -393,6 +402,18 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-darwin-arm64@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
+ dependencies:
+ "@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
+ dependenciesMeta:
+ "@img/sharp-libvips-darwin-arm64":
+ optional: true
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@img/sharp-darwin-x64@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-darwin-x64@npm:0.33.3"
@@ -405,6 +426,18 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-darwin-x64@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-darwin-x64@npm:0.33.5"
+ dependencies:
+ "@img/sharp-libvips-darwin-x64": "npm:1.0.4"
+ dependenciesMeta:
+ "@img/sharp-libvips-darwin-x64":
+ optional: true
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
"@img/sharp-libvips-darwin-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.2"
@@ -412,6 +445,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-libvips-darwin-arm64@npm:1.0.4":
+ version: 1.0.4
+ resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@img/sharp-libvips-darwin-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.2"
@@ -419,6 +459,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-libvips-darwin-x64@npm:1.0.4":
+ version: 1.0.4
+ resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
"@img/sharp-libvips-linux-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.2"
@@ -426,6 +473,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-libvips-linux-arm64@npm:1.0.4":
+ version: 1.0.4
+ resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4"
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
"@img/sharp-libvips-linux-arm@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-arm@npm:1.0.2"
@@ -433,6 +487,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-libvips-linux-arm@npm:1.0.5":
+ version: 1.0.5
+ resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5"
+ conditions: os=linux & cpu=arm & libc=glibc
+ languageName: node
+ linkType: hard
+
"@img/sharp-libvips-linux-s390x@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.2"
@@ -440,6 +501,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-libvips-linux-s390x@npm:1.0.4":
+ version: 1.0.4
+ resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
+ conditions: os=linux & cpu=s390x & libc=glibc
+ languageName: node
+ linkType: hard
+
"@img/sharp-libvips-linux-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-x64@npm:1.0.2"
@@ -447,6 +515,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-libvips-linux-x64@npm:1.0.4":
+ version: 1.0.4
+ resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4"
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.2"
@@ -454,6 +529,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4":
+ version: 1.0.4
+ resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4"
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
"@img/sharp-libvips-linuxmusl-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.2"
@@ -461,6 +543,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4":
+ version: 1.0.4
+ resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4"
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
"@img/sharp-linux-arm64@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-linux-arm64@npm:0.33.3"
@@ -473,6 +562,18 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-linux-arm64@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-linux-arm64@npm:0.33.5"
+ dependencies:
+ "@img/sharp-libvips-linux-arm64": "npm:1.0.4"
+ dependenciesMeta:
+ "@img/sharp-libvips-linux-arm64":
+ optional: true
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
"@img/sharp-linux-arm@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-linux-arm@npm:0.33.3"
@@ -485,6 +586,18 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-linux-arm@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-linux-arm@npm:0.33.5"
+ dependencies:
+ "@img/sharp-libvips-linux-arm": "npm:1.0.5"
+ dependenciesMeta:
+ "@img/sharp-libvips-linux-arm":
+ optional: true
+ conditions: os=linux & cpu=arm & libc=glibc
+ languageName: node
+ linkType: hard
+
"@img/sharp-linux-s390x@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-linux-s390x@npm:0.33.3"
@@ -497,6 +610,18 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-linux-s390x@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-linux-s390x@npm:0.33.5"
+ dependencies:
+ "@img/sharp-libvips-linux-s390x": "npm:1.0.4"
+ dependenciesMeta:
+ "@img/sharp-libvips-linux-s390x":
+ optional: true
+ conditions: os=linux & cpu=s390x & libc=glibc
+ languageName: node
+ linkType: hard
+
"@img/sharp-linux-x64@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-linux-x64@npm:0.33.3"
@@ -509,6 +634,18 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-linux-x64@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-linux-x64@npm:0.33.5"
+ dependencies:
+ "@img/sharp-libvips-linux-x64": "npm:1.0.4"
+ dependenciesMeta:
+ "@img/sharp-libvips-linux-x64":
+ optional: true
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
"@img/sharp-linuxmusl-arm64@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.3"
@@ -521,6 +658,18 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-linuxmusl-arm64@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5"
+ dependencies:
+ "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
+ dependenciesMeta:
+ "@img/sharp-libvips-linuxmusl-arm64":
+ optional: true
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
"@img/sharp-linuxmusl-x64@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-linuxmusl-x64@npm:0.33.3"
@@ -533,6 +682,18 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-linuxmusl-x64@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5"
+ dependencies:
+ "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
+ dependenciesMeta:
+ "@img/sharp-libvips-linuxmusl-x64":
+ optional: true
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
"@img/sharp-wasm32@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-wasm32@npm:0.33.3"
@@ -542,6 +703,15 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-wasm32@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-wasm32@npm:0.33.5"
+ dependencies:
+ "@emnapi/runtime": "npm:^1.2.0"
+ conditions: cpu=wasm32
+ languageName: node
+ linkType: hard
+
"@img/sharp-win32-ia32@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-win32-ia32@npm:0.33.3"
@@ -549,6 +719,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-win32-ia32@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-win32-ia32@npm:0.33.5"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
"@img/sharp-win32-x64@npm:0.33.3":
version: 0.33.3
resolution: "@img/sharp-win32-x64@npm:0.33.3"
@@ -556,6 +733,13 @@ __metadata:
languageName: node
linkType: hard
+"@img/sharp-win32-x64@npm:0.33.5":
+ version: 0.33.5
+ resolution: "@img/sharp-win32-x64@npm:0.33.5"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
@@ -620,13 +804,13 @@ __metadata:
"@elgorditosalsero/react-gtm-hook": "npm:^2.7.2"
"@mdx-js/loader": "npm:^3.0.1"
"@octokit/graphql": "npm:^8.1.1"
- "@tailwindcss/typography": "npm:^0.5.13"
+ "@tailwindcss/typography": "npm:^0.5.15"
"@vercel/analytics": "npm:^1.2.2"
autoprefixer: "npm:^10.4.19"
classnames: "npm:^2.5.1"
gray-matter: "npm:^4.0.3"
gsap: "npm:^3.12.5"
- next: "npm:^14.2.3"
+ next: "npm:^15.0.3"
next-mdx-remote: "npm:^3.0.8"
postcss: "npm:^8.4.38"
react: "npm:^18.3.1"
@@ -729,72 +913,65 @@ __metadata:
languageName: node
linkType: hard
-"@next/env@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/env@npm:14.2.3"
- checksum: 10c0/25ab3ac2739c8e5ce35e1f50373238c5c428ab6b01d448ba78a6068dcdef88978b64f9a92790c324b2926ccc41390a67107154a0b0fee32fe980a485f4ef20d8
+"@next/env@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/env@npm:15.0.3"
+ checksum: 10c0/63582fed80d6a28fff102c935095da71fd57ddf6b5f5d564e85ebdefdeb93298f7f7cf7d813c75b460c6627106717ea959b4c232939e7abb97d73d8b8467d4cd
languageName: node
linkType: hard
-"@next/swc-darwin-arm64@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-darwin-arm64@npm:14.2.3"
+"@next/swc-darwin-arm64@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/swc-darwin-arm64@npm:15.0.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@next/swc-darwin-x64@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-darwin-x64@npm:14.2.3"
+"@next/swc-darwin-x64@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/swc-darwin-x64@npm:15.0.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@next/swc-linux-arm64-gnu@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-linux-arm64-gnu@npm:14.2.3"
+"@next/swc-linux-arm64-gnu@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/swc-linux-arm64-gnu@npm:15.0.3"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@next/swc-linux-arm64-musl@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-linux-arm64-musl@npm:14.2.3"
+"@next/swc-linux-arm64-musl@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/swc-linux-arm64-musl@npm:15.0.3"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@next/swc-linux-x64-gnu@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-linux-x64-gnu@npm:14.2.3"
+"@next/swc-linux-x64-gnu@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/swc-linux-x64-gnu@npm:15.0.3"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@next/swc-linux-x64-musl@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-linux-x64-musl@npm:14.2.3"
+"@next/swc-linux-x64-musl@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/swc-linux-x64-musl@npm:15.0.3"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@next/swc-win32-arm64-msvc@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-win32-arm64-msvc@npm:14.2.3"
+"@next/swc-win32-arm64-msvc@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/swc-win32-arm64-msvc@npm:15.0.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@next/swc-win32-ia32-msvc@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-win32-ia32-msvc@npm:14.2.3"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@next/swc-win32-x64-msvc@npm:14.2.3":
- version: 14.2.3
- resolution: "@next/swc-win32-x64-msvc@npm:14.2.3"
+"@next/swc-win32-x64-msvc@npm:15.0.3":
+ version: 15.0.3
+ resolution: "@next/swc-win32-x64-msvc@npm:15.0.3"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -913,26 +1090,25 @@ __metadata:
languageName: node
linkType: hard
-"@swc/counter@npm:^0.1.3":
+"@swc/counter@npm:0.1.3":
version: 0.1.3
resolution: "@swc/counter@npm:0.1.3"
checksum: 10c0/8424f60f6bf8694cfd2a9bca45845bce29f26105cda8cf19cdb9fd3e78dc6338699e4db77a89ae449260bafa1cc6bec307e81e7fb96dbf7dcfce0eea55151356
languageName: node
linkType: hard
-"@swc/helpers@npm:0.5.5":
- version: 0.5.5
- resolution: "@swc/helpers@npm:0.5.5"
+"@swc/helpers@npm:0.5.13":
+ version: 0.5.13
+ resolution: "@swc/helpers@npm:0.5.13"
dependencies:
- "@swc/counter": "npm:^0.1.3"
tslib: "npm:^2.4.0"
- checksum: 10c0/21a9b9cfe7e00865f9c9f3eb4c1cc5b397143464f7abee76a2c5366e591e06b0155b5aac93fe8269ef8d548df253f6fd931e9ddfc0fd12efd405f90f45506e7d
+ checksum: 10c0/b9df578401fc62405da9a6c31e79e447a2fd90f68b25b1daee12f2caf2821991bb89106f0397bc1acb4c4d84a8ce079d04b60b65f534496952e3bf8c9a52f40f
languageName: node
linkType: hard
-"@tailwindcss/typography@npm:^0.5.13":
- version: 0.5.13
- resolution: "@tailwindcss/typography@npm:0.5.13"
+"@tailwindcss/typography@npm:^0.5.15":
+ version: 0.5.15
+ resolution: "@tailwindcss/typography@npm:0.5.15"
dependencies:
lodash.castarray: "npm:^4.4.0"
lodash.isplainobject: "npm:^4.0.6"
@@ -940,7 +1116,7 @@ __metadata:
postcss-selector-parser: "npm:6.0.10"
peerDependencies:
tailwindcss: "*"
- checksum: 10c0/6c01287e7492c001595cd5a39765f313e48e1d2997ea78823919edabd692300d144c42b6e16dee6e077a683e635b9164ff985d5a0f8eeff7824b2d119151899e
+ checksum: 10c0/bd1a1d0ab06816afe129a49cb8a693b4f6ffe77748f5279f07ea29ea9fcb44ef24d1f8b1cfcffaf41dd9cb60065745897cbfc9dcabc57c8a60ceb89d594c97c6
languageName: node
linkType: hard
@@ -1984,7 +2160,7 @@ __metadata:
languageName: node
linkType: hard
-"graceful-fs@npm:^4.2.11, graceful-fs@npm:^4.2.6":
+"graceful-fs@npm:^4.2.6":
version: 4.2.11
resolution: "graceful-fs@npm:4.2.11"
checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2
@@ -3583,31 +3759,32 @@ __metadata:
languageName: node
linkType: hard
-"next@npm:^14.2.3":
- version: 14.2.3
- resolution: "next@npm:14.2.3"
+"next@npm:^15.0.3":
+ version: 15.0.3
+ resolution: "next@npm:15.0.3"
dependencies:
- "@next/env": "npm:14.2.3"
- "@next/swc-darwin-arm64": "npm:14.2.3"
- "@next/swc-darwin-x64": "npm:14.2.3"
- "@next/swc-linux-arm64-gnu": "npm:14.2.3"
- "@next/swc-linux-arm64-musl": "npm:14.2.3"
- "@next/swc-linux-x64-gnu": "npm:14.2.3"
- "@next/swc-linux-x64-musl": "npm:14.2.3"
- "@next/swc-win32-arm64-msvc": "npm:14.2.3"
- "@next/swc-win32-ia32-msvc": "npm:14.2.3"
- "@next/swc-win32-x64-msvc": "npm:14.2.3"
- "@swc/helpers": "npm:0.5.5"
+ "@next/env": "npm:15.0.3"
+ "@next/swc-darwin-arm64": "npm:15.0.3"
+ "@next/swc-darwin-x64": "npm:15.0.3"
+ "@next/swc-linux-arm64-gnu": "npm:15.0.3"
+ "@next/swc-linux-arm64-musl": "npm:15.0.3"
+ "@next/swc-linux-x64-gnu": "npm:15.0.3"
+ "@next/swc-linux-x64-musl": "npm:15.0.3"
+ "@next/swc-win32-arm64-msvc": "npm:15.0.3"
+ "@next/swc-win32-x64-msvc": "npm:15.0.3"
+ "@swc/counter": "npm:0.1.3"
+ "@swc/helpers": "npm:0.5.13"
busboy: "npm:1.6.0"
caniuse-lite: "npm:^1.0.30001579"
- graceful-fs: "npm:^4.2.11"
postcss: "npm:8.4.31"
- styled-jsx: "npm:5.1.1"
+ sharp: "npm:^0.33.5"
+ styled-jsx: "npm:5.1.6"
peerDependencies:
"@opentelemetry/api": ^1.1.0
"@playwright/test": ^1.41.2
- react: ^18.2.0
- react-dom: ^18.2.0
+ babel-plugin-react-compiler: "*"
+ react: ^18.2.0 || 19.0.0-rc-66855b96-20241106
+ react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106
sass: ^1.3.0
dependenciesMeta:
"@next/swc-darwin-arm64":
@@ -3624,20 +3801,22 @@ __metadata:
optional: true
"@next/swc-win32-arm64-msvc":
optional: true
- "@next/swc-win32-ia32-msvc":
- optional: true
"@next/swc-win32-x64-msvc":
optional: true
+ sharp:
+ optional: true
peerDependenciesMeta:
"@opentelemetry/api":
optional: true
"@playwright/test":
optional: true
+ babel-plugin-react-compiler:
+ optional: true
sass:
optional: true
bin:
next: dist/bin/next
- checksum: 10c0/2c409154720846d07a7a995cc3bfba24b9ee73c87360ce3266528c8a217f5f1ab6f916cffbe1be83509b4e8d7b1d713921bb5c69338b4ecaa57df3212f79a8c5
+ checksum: 10c0/c5f6a57acb5f29063abc82d4d4417a048d0c2d5216d6ded6aa3fe32d60bb4835ed57dd34e2ef8fdda15579e97205820dc25bf34556b1d942a01a33d9ae7f88db
languageName: node
linkType: hard
@@ -4346,6 +4525,15 @@ __metadata:
languageName: node
linkType: hard
+"semver@npm:^7.6.3":
+ version: 7.6.3
+ resolution: "semver@npm:7.6.3"
+ bin:
+ semver: bin/semver.js
+ checksum: 10c0/88f33e148b210c153873cb08cfe1e281d518aaa9a666d4d148add6560db5cd3c582f3a08ccb91f38d5f379ead256da9931234ed122057f40bb5766e65e58adaf
+ languageName: node
+ linkType: hard
+
"server-only@npm:^0.0.1":
version: 0.0.1
resolution: "server-only@npm:0.0.1"
@@ -4422,6 +4610,75 @@ __metadata:
languageName: node
linkType: hard
+"sharp@npm:^0.33.5":
+ version: 0.33.5
+ resolution: "sharp@npm:0.33.5"
+ dependencies:
+ "@img/sharp-darwin-arm64": "npm:0.33.5"
+ "@img/sharp-darwin-x64": "npm:0.33.5"
+ "@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
+ "@img/sharp-libvips-darwin-x64": "npm:1.0.4"
+ "@img/sharp-libvips-linux-arm": "npm:1.0.5"
+ "@img/sharp-libvips-linux-arm64": "npm:1.0.4"
+ "@img/sharp-libvips-linux-s390x": "npm:1.0.4"
+ "@img/sharp-libvips-linux-x64": "npm:1.0.4"
+ "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
+ "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
+ "@img/sharp-linux-arm": "npm:0.33.5"
+ "@img/sharp-linux-arm64": "npm:0.33.5"
+ "@img/sharp-linux-s390x": "npm:0.33.5"
+ "@img/sharp-linux-x64": "npm:0.33.5"
+ "@img/sharp-linuxmusl-arm64": "npm:0.33.5"
+ "@img/sharp-linuxmusl-x64": "npm:0.33.5"
+ "@img/sharp-wasm32": "npm:0.33.5"
+ "@img/sharp-win32-ia32": "npm:0.33.5"
+ "@img/sharp-win32-x64": "npm:0.33.5"
+ color: "npm:^4.2.3"
+ detect-libc: "npm:^2.0.3"
+ semver: "npm:^7.6.3"
+ dependenciesMeta:
+ "@img/sharp-darwin-arm64":
+ optional: true
+ "@img/sharp-darwin-x64":
+ optional: true
+ "@img/sharp-libvips-darwin-arm64":
+ optional: true
+ "@img/sharp-libvips-darwin-x64":
+ optional: true
+ "@img/sharp-libvips-linux-arm":
+ optional: true
+ "@img/sharp-libvips-linux-arm64":
+ optional: true
+ "@img/sharp-libvips-linux-s390x":
+ optional: true
+ "@img/sharp-libvips-linux-x64":
+ optional: true
+ "@img/sharp-libvips-linuxmusl-arm64":
+ optional: true
+ "@img/sharp-libvips-linuxmusl-x64":
+ optional: true
+ "@img/sharp-linux-arm":
+ optional: true
+ "@img/sharp-linux-arm64":
+ optional: true
+ "@img/sharp-linux-s390x":
+ optional: true
+ "@img/sharp-linux-x64":
+ optional: true
+ "@img/sharp-linuxmusl-arm64":
+ optional: true
+ "@img/sharp-linuxmusl-x64":
+ optional: true
+ "@img/sharp-wasm32":
+ optional: true
+ "@img/sharp-win32-ia32":
+ optional: true
+ "@img/sharp-win32-x64":
+ optional: true
+ checksum: 10c0/6b81421ddfe6ee524d8d77e325c5e147fef22884e1c7b1656dfd89a88d7025894115da02d5f984261bf2e6daa16f98cadd1721c4ba408b4212b1d2a60f233484
+ languageName: node
+ linkType: hard
+
"shebang-command@npm:^2.0.0":
version: 2.0.0
resolution: "shebang-command@npm:2.0.0"
@@ -4638,19 +4895,19 @@ __metadata:
languageName: node
linkType: hard
-"styled-jsx@npm:5.1.1":
- version: 5.1.1
- resolution: "styled-jsx@npm:5.1.1"
+"styled-jsx@npm:5.1.6":
+ version: 5.1.6
+ resolution: "styled-jsx@npm:5.1.6"
dependencies:
client-only: "npm:0.0.1"
peerDependencies:
- react: ">= 16.8.0 || 17.x.x || ^18.0.0-0"
+ react: ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
peerDependenciesMeta:
"@babel/core":
optional: true
babel-plugin-macros:
optional: true
- checksum: 10c0/42655cdadfa5388f8a48bb282d6b450df7d7b8cf066ac37038bd0499d3c9f084815ebd9ff9dfa12a218fd4441338851db79603498d7557207009c1cf4d609835
+ checksum: 10c0/ace50e7ea5ae5ae6a3b65a50994c51fca6ae7df9c7ecfd0104c36be0b4b3a9c5c1a2374d16e2a11e256d0b20be6d47256d768ecb4f91ab390f60752a075780f5
languageName: node
linkType: hard