diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index 718d6fe..0000000
Binary files a/public/favicon.ico and /dev/null differ
diff --git a/public/focus.svg b/public/focus.svg
deleted file mode 100644
index addd6e6..0000000
--- a/public/focus.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/next.svg b/public/next.svg
deleted file mode 100644
index 5174b28..0000000
--- a/public/next.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/vercel.svg b/public/vercel.svg
deleted file mode 100644
index d2f8422..0000000
--- a/public/vercel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
index cd47efa..ad8e90c 100644
--- a/src/pages/_app.tsx
+++ b/src/pages/_app.tsx
@@ -1,4 +1,5 @@
import "@/styles/globals.css";
+
import type { AppProps } from "next/app";
import Head from "next/head";
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 3415dd5..4e6a5ed 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,6 +1,6 @@
+import { useEffect, useState } from "react";
+
import { Inter } from "next/font/google";
-import { useState } from "react";
-import { useEffect } from "react";
const inter = Inter({ subsets: ["latin"] });
diff --git a/src/styles/globals.css b/src/styles/globals.css
index 3c0ae33..4424c5b 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -15,10 +15,10 @@
}
body {
- color: rgb(var(--foreground-rgb));
- background-color: var(--background-color);
transition: all 0.2s;
+ background-color: var(--background-color);
height: 100%;
+ color: rgb(var(--foreground-rgb));
}
@layer utilities {