- Introduced `package-lock.json` to lock down dependencies for consistent builds. - Updated `package.json` to include `@nostr-dev-kit/ndk` as a dependency. - Modified `index.html` title and favicon references for branding consistency. - Added new favicon image `orly-favicon.png` for improved visual identity. - Refined `bundle.css` and `bundle.js` for better performance and reduced size. - Enhanced `App.svelte` and `LoginModal.svelte` for improved user experience and interactivity.
19 lines
399 B
HTML
19 lines
399 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
|
|
|
<title>nostrly.app</title>
|
|
|
|
<link rel='icon' type='image/png' href='/orly-favicon.png'>
|
|
<link rel='stylesheet' href='/global.css'>
|
|
<link rel='stylesheet' href='/build/bundle.css'>
|
|
|
|
<script defer src='/build/bundle.js'></script>
|
|
</head>
|
|
|
|
<body>
|
|
</body>
|
|
</html>
|