2026-04-08 12:23:24 -05:00
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
import type { AppProps } from "next/app";
|
2026-04-11 08:43:19 -05:00
|
|
|
import CookieConsent from "./components/CookieConsent";
|
2026-04-08 12:23:24 -05:00
|
|
|
|
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
2026-04-11 08:43:19 -05:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Component {...pageProps} />
|
|
|
|
|
<CookieConsent />
|
|
|
|
|
</>
|
|
|
|
|
);
|
2026-04-08 12:23:24 -05:00
|
|
|
}
|