diff --git a/.vscode/settings.json b/.vscode/settings.json
index 5c52d76..bf80054 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -6,5 +6,8 @@
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
+ },
+ "[css]": {
+ "editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
}
}
\ No newline at end of file
diff --git a/src/app/globals.css b/src/app/globals.css
index cdbeffc..f5e78cf 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -5,20 +5,6 @@
--foreground: #171717;
}
-@theme inline {
- --color-background: var(--background);
- --color-foreground: var(--foreground);
- --font-sans: var(--font-geist-sans);
- --font-mono: var(--font-geist-mono);
-}
-
-/* @media (prefers-color-scheme: dark) {
- :root {
- --background: #0a0a0a;
- --foreground: #ededed;
- }
-} */
-
body {
background: var(--background);
color: var(--foreground);
@@ -28,3 +14,7 @@ body {
.code-block {
font-family: var(--font-geist-mono), monospace;
}
+
+.navbar-btn {
+ @apply border-0 bg-transparent hover:bg-black/30 shadow-none;
+}
diff --git a/src/components/LanguageSettings.tsx b/src/components/layout/LanguageSettings.tsx
similarity index 95%
rename from src/components/LanguageSettings.tsx
rename to src/components/layout/LanguageSettings.tsx
index de6cccf..643bee0 100644
--- a/src/components/LanguageSettings.tsx
+++ b/src/components/layout/LanguageSettings.tsx
@@ -1,6 +1,6 @@
"use client";
-import { GhostButton } from "./ui/buttons";
+import { GhostButton } from "../ui/buttons";
import { useState } from "react";
import { Languages } from "lucide-react";
@@ -15,7 +15,7 @@ export function LanguageSettings() {
};
return (
<>
-