diff --git a/docs/components/home.jsx b/docs/components/home.jsx index 67d3baa..f268478 100644 --- a/docs/components/home.jsx +++ b/docs/components/home.jsx @@ -1,3 +1,6 @@ +import { Button } from "@openui-org/react/components"; +import Link from "next/link"; + export default function Home() { return (
@@ -12,7 +15,7 @@ export default function Home() { and Tailwind CSS -

+

Open UI is an open source design system with a completely cutting-edge system. {' '} @@ -21,6 +24,13 @@ export default function Home() { Fully customizable and modifiable you will make UI development much faster with fully stylized components.

+
+ +
diff --git a/docs/components/logo.jsx b/docs/components/logo.jsx index c955ab4..e730177 100644 --- a/docs/components/logo.jsx +++ b/docs/components/logo.jsx @@ -1,5 +1,5 @@ export default function logo() { return ( -

Open UI

+

Open UI

) } diff --git a/docs/fonts/GothamSSm-medium.woff2 b/docs/fonts/GothamSSm-medium.woff2 new file mode 100644 index 0000000..a06e437 Binary files /dev/null and b/docs/fonts/GothamSSm-medium.woff2 differ diff --git a/docs/globals.css b/docs/globals.css index b5c61c9..300e83f 100644 --- a/docs/globals.css +++ b/docs/globals.css @@ -1,3 +1,15 @@ @tailwind base; @tailwind components; @tailwind utilities; + +@layer base { + @font-face { + font-family: 'Gotham Medium'; + src: url('./fonts/GothamSSm-medium.woff2') format('woff2'); + } + html, + body { + scroll-behavior: smooth; + font-family: 'Gotham Medium', system-ui, sans-serif; + } +}