import '@/styles/theme.css';
import '@/styles/globals.css'; // if exists, otherwise you can create an empty file

import type { AppProps } from 'next/app';

export default function MyApp({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />;
}
