You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
438 B
16 lines
438 B
<script lang="ts"> |
|
import Header from '../../../lib/components/layout/Header.svelte'; |
|
import ProfilePage from '../../../lib/modules/profiles/ProfilePage.svelte'; |
|
import { nostrClient } from '../../../lib/services/nostr/nostr-client.js'; |
|
import { onMount } from 'svelte'; |
|
|
|
onMount(async () => { |
|
await nostrClient.initialize(); |
|
}); |
|
</script> |
|
|
|
<Header /> |
|
|
|
<main class="container mx-auto px-4 py-8"> |
|
<ProfilePage /> |
|
</main>
|
|
|