Multiple changes related to icons, and the server documentation #5
1 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
import { AppProps } from "next/app";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
|
@ -6,7 +7,7 @@ const poppins = Poppins({
|
|||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
function MyApp({ Component, pageProps }) {
|
||||
function MyApp({ Component, pageProps }: AppProps) {
|
||||
return (
|
||||
<>
|
||||
<style jsx global>{`
|
||||
|
|
Loading…
Reference in a new issue