fixed package lock for realsies

This commit is contained in:
Hunter W.
2026-03-27 13:51:31 -04:00
parent ce044e48de
commit a76c3c51f7
3 changed files with 16 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
'use client' "use client";
import { useState, useEffect } from 'react' import { useState, useEffect } from 'react'
import { useTheme } from 'next-themes' import { useTheme } from 'next-themes'

15
package-lock.json generated
View File

@@ -6610,6 +6610,21 @@
"peerDependencies": { "peerDependencies": {
"zod": "^3.25.0 || ^4.0.0" "zod": "^3.25.0 || ^4.0.0"
} }
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "16.2.1",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.1.tgz",
"integrity": "sha512-qvU+3a39Hay+ieIztkGSbF7+mccbbg1Tk25hc4JDylf8IHjYmY/Zm64Qq1602yPyQqvie+vf5T/uPwNxDNIoeg==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
} }
} }
} }

View File

@@ -1,10 +0,0 @@
import type { AppProps } from 'next/app'
import { ThemeProvider } from 'next-themes'
export default function MyApp({ Component, pageProps }: AppProps) {
return (
<ThemeProvider>
<Component {...pageProps} />
</ThemeProvider>
)
}