mirror of
https://github.com/block-core/angor-hub-old.git
synced 2026-02-11 13:04:20 +01:00
* Update profile.component.html * Prepare event box and comment box for receiving and sending events and comments. * Add like, share and event preview UI to events * Add event box * Update user.ts * Update post.ts * Update notification.service.ts * Update metadata.service.ts * Update event.service.ts * Update notifications.component.ts * Update profile.component.ts * Update profile.component.html * Load user events * Fix UI * Add new service to get events * Update event service * Update event service * Update event service * Update publishEventToWriteRelays * Update event service * Clean and format code * Change events UI * Update event service * Update event service * Update event UI * Update profile.component.html * Add event list component and update profile
61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Angor Hub</title>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="description"
|
|
content="Angor Hub is a Nostr client that is customized around the Angor protocol, a decentralized crowdfunding platform."
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="Angor, Bitcoin, Nostr, decentralized crowdfunding, crypto projects, Bitcoin crowdfunding, Angor protocol, Nostr client, blockchain funding"
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
|
|
/>
|
|
|
|
<base href="/" />
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="favicon-16x16.png" />
|
|
<link rel="icon" type="image/png" href="favicon-32x32.png" />
|
|
|
|
<!-- Fonts -->
|
|
<link href="fonts/inter/inter.css" rel="stylesheet" />
|
|
<link href="https://fonts.gstatic.com" rel="preconnect" />
|
|
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;1,400&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<!-- Icon fonts -->
|
|
<link
|
|
href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<!-- Splash screen styles -->
|
|
<link href="styles/splash-screen.css" rel="stylesheet" />
|
|
|
|
<link rel="manifest" href="manifest.webmanifest" />
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Splash screen -->
|
|
<angor-splash-screen>
|
|
<img src="images/logo/logo.svg" alt="Angor logo" />
|
|
<div class="spinner">
|
|
<div class="bounce1"></div>
|
|
<div class="bounce2"></div>
|
|
<div class="bounce3"></div>
|
|
</div>
|
|
</angor-splash-screen>
|
|
|
|
<!-- App root -->
|
|
<app-root></app-root>
|
|
</body>
|
|
</html>
|