58 lines
1.6 KiB
HTML
58 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Nostr Chat Widget V2 Test</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
|
|
min-height: 100vh;
|
|
color: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.content {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
max-width: 600px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
background: linear-gradient(to right, #fdad01, #ff8c00);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
p {
|
|
color: #aaa;
|
|
line-height: 1.6;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="content">
|
|
<h1>Nostr Chat Widget V2</h1>
|
|
<p>This is a test page for the refactored Nostr Chat Widget.</p>
|
|
<p>The widget should appear in the bottom right corner.</p>
|
|
</div>
|
|
|
|
<!-- Widget Embed Code -->
|
|
<!-- Using a random hex pubkey for testing purposes -->
|
|
<script src="nostr-chat-widget.js"
|
|
data-nostr-pubkey="75462f4dece4fbde54a535cfa09eb0d329bda090a9c2f9ed6b5f9d1d2fb6c15b"
|
|
data-brand-name="Test Widget" data-color="#fdad01" data-color-secondary="#ff8c00">
|
|
</script>
|
|
</body>
|
|
|
|
</html> |