- Added `tailwind.min.css` tailored to current app requirements to reduce external dependencies. - Updated `index.html` to use the local Tailwind CSS file. - Improved `package.json` `build` script to ensure `dist` directory creation and inclusion of all `public/` assets. - Refined CSS and layout in `App.jsx` for better consistency and responsiveness.
13 lines
363 B
HTML
13 lines
363 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Nostr Relay</title>
|
|
<link rel="stylesheet" href="tailwind.min.css" />
|
|
</head>
|
|
<body class="bg-white">
|
|
<div id="root"></div>
|
|
<script type="module" src="index.js"></script>
|
|
</body>
|
|
</html> |