diff --git a/app/_app.tsx b/app/_app.tsx
new file mode 100644
index 0000000..5e47de4
--- /dev/null
+++ b/app/_app.tsx
@@ -0,0 +1,11 @@
+import './globals.css'
+import type { AppProps } from 'next/app'
+import { ThemeProvider } from "next-themes"
+
+export default function App({ Component, pageProps }: AppProps) {
+ return (
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/app/globals.css b/app/globals.css
index 631f07f..5d6f63c 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -44,7 +44,6 @@ html {
}
line-height: 100%;
letter-spacing: -0.03em;
- color: #FFFFFF;
text-align: center;
}
@@ -57,36 +56,35 @@ html {
font-size: 20px;
}
letter-spacing: -0.03em;
- color: #FFFFFF;
text-align: left;
justify-content: flex-start;
}
@layer base {
:root {
- --background:223.6,15.5%,13.9%;
- --foreground:229, 15%, 15%;
+ --background: white;
+ --foreground: black;
- --card: 0 0% 100%;
- --card-foreground: 222.2 84% 4.9%;
+ --card: white;
+ --card-foreground: black;
- --popover: 0 0% 100%;
- --popover-foreground: 222.2 84% 4.9%;
+ --popover: white;
+ --popover-foreground: black;
- --primary: 222.2 47.4% 11.2%;
- --primary-foreground: 210 40% 98%;
+ --primary: white;
+ --primary-foreground: black;
- --secondary: 210 40% 96.1%;
- --secondary-foreground: 222.2 47.4% 11.2%;
+ --secondary: white;
+ --secondary-foreground: black;
- --muted: 210 40% 96.1%;
- --muted-foreground: 215.4 16.3% 46.9%;
+ --muted: white;
+ --muted-foreground: black;
- --accent: 210 40% 96.1%;
- --accent-foreground: 222.2 47.4% 11.2%;
+ --accent: white;
+ --accent-foreground: black;
- --destructive: 0 84.2% 60.2%;
- --destructive-foreground: 210 40% 98%;
+ --destructive:white;
+ --destructive-foreground: black;
--border: 214.3 31.8% 91.4%;
--input: 214.3 31.8% 91.4%;
@@ -96,29 +94,29 @@ html {
}
.dark {
- --background: 229, 15%, 15%;
- --foreground:229, 15%, 15%;
+ --background: black;
+ --foreground: white;
- --card: 222.2 84% 4.9%;
- --card-foreground: 210 40% 98%;
+ --card: black;
+ --card-foreground: white;
- --popover: 222.2 84% 4.9%;
- --popover-foreground: 210 40% 98%;
+ --popover: black;
+ --popover-foreground: white;
- --primary: 210 40% 98%;
- --primary-foreground: 222.2 47.4% 11.2%;
+ --primary: black;
+ --primary-foreground: white;
- --secondary: 217.2 32.6% 17.5%;
- --secondary-foreground: 210 40% 98%;
+ --secondary: black;
+ --secondary-foreground: white;
- --muted: 217.2 32.6% 17.5%;
- --muted-foreground: 215 20.2% 65.1%;
+ --muted: black;
+ --muted-foreground: white;
- --accent: 217.2 32.6% 17.5%;
- --accent-foreground: 210 40% 98%;
+ --accent: black;
+ --accent-foreground: white;
- --destructive: 0 62.8% 30.6%;
- --destructive-foreground: 210 40% 98%;
+ --destructive: black;
+ --destructive-foreground: white;
--border: 217.2 32.6% 17.5%;
--input: 217.2 32.6% 17.5%;
diff --git a/app/layout.tsx b/app/layout.tsx
index b18e4b3..59ddd68 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,7 +1,7 @@
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
-import { PHProvider, PostHogPageview } from './providers'
+import { PHProvider, PostHogPageview, Providers } from './providers'
import { Suspense } from 'react'
const inter = Inter({ subsets: ['latin'] })
@@ -23,7 +23,7 @@ export default function RootLayout({
- {children}
+ {children}