2024-06-24 19:35:35 +02:00
|
|
|
import "@/app/globals.css";
|
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
|
|
return (
|
|
|
|
<main style={{ fontFamily: "Poppins" }}>
|
2024-06-25 19:28:21 +02:00
|
|
|
<Component {...pageProps} />
|
2024-06-24 19:35:35 +02:00
|
|
|
</main>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyApp;
|