Get Started

Learn how to get started with installing Doge UI in your project.

Static Websites

For static websites, you will need to include the compiled CSS in your HTML file.

index.html
<link href="path/to/dogeUI.css" rel="stylesheet" />
html

React/Next.JS Project

Import Doge-UI in your index.js (React) or _app.js (NextJS) file as follows

app.jsx
//pages/_app.js import 'path/to/doge-ui.css' function MyApp({ Component, pageProps }) { return <Component {...pageProps} /> } export default MyApp
jsx

Colors and Fonts

DogeUI recommends using Inter as the primary font. It is not included in the final compiled CSS.