mirror of https://github.com/sgoudham/website.git
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.
13 lines
358 B
TypeScript
13 lines
358 B
TypeScript
2 years ago
|
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>
|
||
|
)
|
||
|
}
|