mirror of
https://github.com/aljazceru/pubky-core.git
synced 2025-12-31 21:04:34 +01:00
39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- <link rel="icon" href="images/favicon.ico" /> -->
|
|
<!-- Primary Meta Tags -->
|
|
<title>Pubky demo</title>
|
|
<meta name="title" content="Pubky demo" />
|
|
<meta name="description" content="Pubky is a new thing." />
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<!-- <meta property="og:url" content=""> -->
|
|
<!-- <meta property="og:title" content=""> -->
|
|
<!-- <meta property="og:description" content=""> -->
|
|
<!-- <meta property="og:image" content=""> -->
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<!-- <meta property="twitter:url" content=""> -->
|
|
<!-- <meta property="twitter:title" content=""> -->
|
|
<!-- <meta property="twitter:description" content=""> -->
|
|
<!-- <meta property="twitter:image" content=""> -->
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link href="./src/style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="src/index.jsx"></script>
|
|
</body>
|
|
</html>
|