Get started
Install
Add naui.css and naui.js to your project - two files, no build tools.
Add the files
Copy naui.css and naui.js into your project and reference them in your HTML.
<link rel="stylesheet" href="/naui.css">
<script src="/naui.js"></script>Full page example
A minimal HTML page using naUI:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Page</title>
<link rel="stylesheet" href="/naui.css">
</head>
<body>
<button class="na-button na-button-primary">Click me</button>
<script src="/naui.js"></script>
</body>
</html>