font updated

This commit is contained in:
Cypro Freelance 2024-06-24 23:05:35 +05:30
parent ba26969e5a
commit 3d0b8cef22
3 changed files with 222 additions and 203 deletions

View file

@ -1,7 +1,15 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
height: 100%;
width: 100%;
font-family: "Poppins" sans-serif;
}
@layer base {
:root {
--svg-fill: white;

11
pages/_app.js Normal file
View file

@ -0,0 +1,11 @@
import "@/app/globals.css";
function MyApp({ Component, pageProps }) {
return (
<main style={{ fontFamily: "Poppins" }}>
<Component {...pageProps} />;
</main>
);
}
export default MyApp;

View file

@ -21,6 +21,6 @@
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "lib/Hoc/withAuth.jsx" , "**/*.mdx"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "lib/Hoc/withAuth.jsx" , "**/*.mdx", "pages/_app.jsx"],
"exclude": ["node_modules"]
}