You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
website/pages/_app.tsx

13 lines
358 B
TypeScript

import '@/styles/globals.css'
import type { AppProps } from 'next/app'
export const gradient: string = "bg-gradient-to-r from-red via-green to-sky animate-bg-scroll bg-600"
export default function App({ Component, pageProps }: AppProps) {
return (
<main className={`w-full h-screen ${gradient}`}>
<Component {...pageProps} />
</main>
)
}