m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-18 18:03:42 -05:00

Create basic homepage and format docs

This commit is contained in:
Sergio
2024-12-20 19:24:22 +02:00
parent 0a4e302322
commit 359147770f
47 changed files with 3365 additions and 1306 deletions

View File

@@ -1,10 +1,12 @@
import '../styles.css';
import 'nextra-theme-docs/style.css';
import "../styles.css";
import "nextra-theme-docs/style.css";
import { GeistSans } from "geist/font/sans";
export default function App({ Component, pageProps }) {
return (
<main>
<main className={GeistSans.className}>
<Component {...pageProps} />
</main>
);
}
}