diff --git a/app/globals.css b/app/globals.css index a2dc41e..8455e67 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,26 +1,6 @@ @import "tailwindcss"; -:root { - --background: #ffffff; - --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); - font-family: Arial, Helvetica, sans-serif; + background-color: #fff; + color: #000; } diff --git a/app/home/Home.tsx b/app/home/Home.tsx new file mode 100644 index 0000000..8ca06e8 --- /dev/null +++ b/app/home/Home.tsx @@ -0,0 +1,5 @@ +const Home = () => { + return
Home
; +}; + +export default Home; diff --git a/app/page.tsx b/app/page.tsx index 3f36f7c..7bfd626 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,65 +1,7 @@ -import Image from "next/image"; +import Home from "./home/Home"; -export default function Home() { - return ( -
-
- Next.js logo -
-

- To get started, edit the page.tsx file. -

-

- Looking for a starting point or more instructions? Head over to{" "} - - Templates - {" "} - or the{" "} - - Learning - {" "} - center. -

-
-
- - Vercel logomark - Deploy Now - - - Documentation - -
-
-
- ); -} +const page = () => { + return ; +}; + +export default page; diff --git a/public/iranyekan/Qs_Iranyekan black.ttf b/public/iranyekan/Qs_Iranyekan black.ttf new file mode 100644 index 0000000..610d355 Binary files /dev/null and b/public/iranyekan/Qs_Iranyekan black.ttf differ diff --git a/public/iranyekan/Qs_Iranyekan bold.ttf b/public/iranyekan/Qs_Iranyekan bold.ttf new file mode 100644 index 0000000..a8552e1 Binary files /dev/null and b/public/iranyekan/Qs_Iranyekan bold.ttf differ diff --git a/public/iranyekan/Qs_Iranyekan extrablack.ttf b/public/iranyekan/Qs_Iranyekan extrablack.ttf new file mode 100644 index 0000000..7860217 Binary files /dev/null and b/public/iranyekan/Qs_Iranyekan extrablack.ttf differ diff --git a/public/iranyekan/Qs_Iranyekan extrabold.ttf b/public/iranyekan/Qs_Iranyekan extrabold.ttf new file mode 100644 index 0000000..9d83f0d Binary files /dev/null and b/public/iranyekan/Qs_Iranyekan extrabold.ttf differ diff --git a/public/iranyekan/Qs_Iranyekan light.ttf b/public/iranyekan/Qs_Iranyekan light.ttf new file mode 100644 index 0000000..a14f579 Binary files /dev/null and b/public/iranyekan/Qs_Iranyekan light.ttf differ diff --git a/public/iranyekan/Qs_Iranyekan medium.ttf b/public/iranyekan/Qs_Iranyekan medium.ttf new file mode 100644 index 0000000..ba6137f Binary files /dev/null and b/public/iranyekan/Qs_Iranyekan medium.ttf differ diff --git a/public/iranyekan/Qs_Iranyekan thin.ttf b/public/iranyekan/Qs_Iranyekan thin.ttf new file mode 100644 index 0000000..2d75fab Binary files /dev/null and b/public/iranyekan/Qs_Iranyekan thin.ttf differ diff --git a/public/iranyekan/Qs_Iranyekan.ttf b/public/iranyekan/Qs_Iranyekan.ttf new file mode 100644 index 0000000..a0fbc0c Binary files /dev/null and b/public/iranyekan/Qs_Iranyekan.ttf differ diff --git a/public/iranyekan/fonts.css b/public/iranyekan/fonts.css new file mode 100644 index 0000000..456db20 --- /dev/null +++ b/public/iranyekan/fonts.css @@ -0,0 +1,63 @@ +@font-face { + font-family: "IRANYekan"; + src: url("./Qs_Iranyekan%20thin.ttf") format("truetype"); + font-weight: 100; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: "IRANYekan"; + src: url("./Qs_Iranyekan%20light.ttf") format("truetype"); + font-weight: 300; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: "IRANYekan"; + src: url("./Qs_Iranyekan.ttf") format("truetype"); + font-weight: 400; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: "IRANYekan"; + src: url("./Qs_Iranyekan%20medium.ttf") format("truetype"); + font-weight: 500; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: "IRANYekan"; + src: url("./Qs_Iranyekan%20bold.ttf") format("truetype"); + font-weight: 700; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: "IRANYekan"; + src: url("./Qs_Iranyekan%20extrabold.ttf") format("truetype"); + font-weight: 800; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: "IRANYekan"; + src: url("./Qs_Iranyekan%20black.ttf") format("truetype"); + font-weight: 900; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: "IRANYekan"; + src: url("./Qs_Iranyekan%20extrablack.ttf") format("truetype"); + font-weight: 950; + font-style: normal; + font-display: swap; +}