-
-
-
- -
- Get started by editing{" "}
-
- src/pages/index.tsx
-
- .
-
- - Save and see your changes instantly.
-
-
-
-
-
+
+
);
}
diff --git a/src/styles/globals.css b/src/styles/globals.css
index 6b717ad..c3d7b18 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -2,20 +2,28 @@
@tailwind components;
@tailwind utilities;
-:root {
- --background: #ffffff;
- --foreground: #171717;
+* {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
-@media (prefers-color-scheme: dark) {
- :root {
- --background: #0a0a0a;
- --foreground: #ededed;
+@layer base {
+ @font-face {
+ font-family: 'UthmanTaha'; /* Give a unique and clear name to your custom font */
+ font-style: normal;
+ font-weight: 400;
+ font-display: swap;
+ src: url('/public/fonts/KFGQPC Uthman Taha Naskh Regular.ttf') format('truetype'); /* Correct file format */
+ }
+ @font-face {
+ font-family: 'Uthmantaha'; /* Give a unique and clear name to your custom font */
+ font-style: normal;
+ font-weight: 400;
+ font-display: swap;
+ src: url('/public/fonts/KFGQPC Uthman Taha Naskh Regular.ttf') format('truetype'); /* Correct file format */
}
-}
-body {
- color: var(--foreground);
- background: var(--background);
- font-family: Arial, Helvetica, sans-serif;
+ /* Apply the custom font globally */
+ body {
+ font-family: 'UthmanTaha', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ }
}