mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-15 00:23:48 -05:00
13 lines
273 B
Plaintext
13 lines
273 B
Plaintext
import "../styles.css";
|
|
import "nextra-theme-docs/style.css";
|
|
import { GeistSans } from "geist/font/sans";
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
return (
|
|
<main className={GeistSans.className}>
|
|
<Component {...pageProps} />
|
|
</main>
|
|
);
|
|
|
|
}
|