This commit is contained in:
2024-07-29 13:17:10 +05:30
commit 87eaf79afc
37 changed files with 18964 additions and 0 deletions

23
styles/globals.css Normal file
View File

@@ -0,0 +1,23 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
/* normal */
@font-face {
font-family: "Adelle Sans";
src: url("/fonts/AdelleSans-Regular.woff2") format("woff2");
font-style: normal;
font-display: swap;
font-weight: 300;
}
/* semibold */
@font-face {
font-family: "Adelle Sans";
src: url("/fonts/AdelleSans-Semibold.woff2") format("woff2");
font-style: normal;
font-display: swap;
font-weight: 600;
}
}