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.
21 lines
644 B
TypeScript
21 lines
644 B
TypeScript
import { manrope } from '@/styles/fonts';
|
|
import '@/styles/globals.css';
|
|
import clsx from 'clsx';
|
|
import type { AppProps } from 'next/app';
|
|
import styles from '@/styles/app.module.css';
|
|
import Head from 'next/head';
|
|
import { Cursor } from '@/components/cursor';
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<div className={clsx(styles.main, manrope.className)}>
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#FFFFFF" />
|
|
</Head>
|
|
<Cursor>
|
|
<Component {...pageProps} />
|
|
</Cursor>
|
|
</div>
|
|
);
|
|
} |