99 lines
3.3 KiB
Plaintext
99 lines
3.3 KiB
Plaintext
---
|
|
import { Seo } from "astro-seo-meta";
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>Lume: The nostr client for desktop</title>
|
|
<Seo
|
|
title="Lume"
|
|
description="A friendly and scalable Nostr desktop client."
|
|
keywords={[
|
|
"nostr",
|
|
"nostr client",
|
|
"social network",
|
|
"desktop app",
|
|
"timeline",
|
|
"application",
|
|
"columns",
|
|
"tweetdeck",
|
|
]}
|
|
themeColor="#fafafa"
|
|
colorScheme="light"
|
|
facebook={{
|
|
image: "/og-image.jpg",
|
|
url: "https://lume.nu",
|
|
type: "website",
|
|
}}
|
|
twitter={{
|
|
image: "/og-image.jpg",
|
|
card: "summary",
|
|
}}
|
|
/>
|
|
</head>
|
|
<body
|
|
class="w-full h-full antialiased bg-neutral-50 dark:bg-neutral-950 text-neutral-950 dark:text-neutral-50"
|
|
>
|
|
<div class="py-10 flex flex-col gap-10">
|
|
<div class="mx-auto max-w-xl w-full flex flex-col gap-2">
|
|
<div class="mb-5">
|
|
<img
|
|
src="/icon.png"
|
|
alt="App Icon"
|
|
class="size-14 shadow-md shadow-neutral-500/50 rounded-xl object-cover transform-gpu -rotate-6 hover:animate-spin"
|
|
/>
|
|
</div>
|
|
<h1 class="text-xl font-serif font-semibold">
|
|
A friendly and scalable Nostr desktop client.
|
|
</h1>
|
|
<p class="text-sm font-medium text-neutral-700">
|
|
Lume is a <b>Nostr client</b> for desktop, including Linux, Windows, and
|
|
macOS. It is free and open-source; you can look at the source code on <a
|
|
href="https://github.com/lumehq/lume">GitHub</a
|
|
>. Lume is actively improving the app and adding new features; you can
|
|
expect a new update every month.
|
|
</p>
|
|
<p class="text-sm font-medium text-neutral-700">
|
|
<b>Latest version</b>: 4.0.4
|
|
</p>
|
|
<div
|
|
class="w-full h-[120px] sm:h-[80px] flex flex-col sm:flex-row sm:items-center sm:justify-start justify-center gap-2"
|
|
>
|
|
<a
|
|
href="https://github.com/lumehq/lume/releases/latest"
|
|
class="inline-flex items-center justify-center w-44 h-11 rounded-full bg-black hover:ring-2 ring-blue-500 ring-offset-2 text-white font-medium text-sm"
|
|
>Download for macOS</a
|
|
>
|
|
<span class="italic text-xs text-neutral-700"
|
|
>(Windows & Linux are coming later)</span
|
|
>
|
|
</div>
|
|
<div class="text-sm italic text-neutral-600">
|
|
* If you still need to use Lume on Windows and Linux, you can try v3 <a
|
|
href="https://github.com/lumehq/lume/releases/tag/v3.0.2"
|
|
class="text-blue-500">here</a
|
|
>
|
|
</div>
|
|
</div>
|
|
<div class="sm:max-w-3xl w-full mx-auto px-3 sm:px-0">
|
|
<video
|
|
class="aspect-video w-full h-auto rounded-xl"
|
|
autoplay
|
|
muted
|
|
controls
|
|
>
|
|
<source
|
|
src="https://video.nostr.build/4cc4df88caeb861b62e3f73bddbb5e0b5cf63617472a97d22f427e273ee0e127.mp4"
|
|
type="video/mp4"
|
|
/>
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|