13 lines
307 B
TypeScript
13 lines
307 B
TypeScript
import { R3Gradient } from '../components/R3Background'
|
|
import '../styles/globals.css'
|
|
import type { AppProps } from 'next/app'
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<R3Gradient />
|
|
<Component {...pageProps} />
|
|
</>
|
|
)
|
|
}
|