This commit is contained in:
parent
6dd3d1cdd3
commit
8aea061498
5 changed files with 14 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "pdsmanager",
|
||||
"type": "module",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"build": "astro build",
|
||||
|
|
|
@ -37,8 +37,9 @@ export default function LoginForm({ onLogin }: LoginFormProps) {
|
|||
<h1 className="card-title text-2xl font-bold text-center">
|
||||
BlueSky PDS Manager
|
||||
</h1>
|
||||
<p className="text-center text-base-content/70 mb-4">
|
||||
Enter your PDS credentials to get started
|
||||
<p className="text-base-content/70 mb-4">
|
||||
Enter your PDS credentials to get started. All credentials are
|
||||
stored and encrypyted locally (in-browser).
|
||||
</p>
|
||||
{error && (
|
||||
<div className="alert alert-error shadow-lg mb-4">
|
||||
|
|
|
@ -290,7 +290,7 @@ export default function UserList() {
|
|||
<div className="card bg-base-100 shadow-xl">
|
||||
<div className="card-body">
|
||||
<div className="flex justify-between items-center mb-4">
|
||||
<h1 className="card-title text-2xl">BlueSky Users</h1>
|
||||
<h1 className="card-title text-2xl">Users</h1>
|
||||
<button
|
||||
onClick={() => fetchUsers()}
|
||||
disabled={loading}
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
---
|
||||
import pkg from "../../../package.json";
|
||||
const { version } = pkg;
|
||||
---
|
||||
|
||||
<footer class="footer footer-center p-4 bg-base-300 text-base-content">
|
||||
<aside>
|
||||
<p class="text-sm">
|
||||
Made by
|
||||
Build with ❤️ by
|
||||
<a
|
||||
href="https://atri.dad"
|
||||
target="_blank"
|
||||
|
@ -10,8 +15,8 @@
|
|||
>
|
||||
Atridad Lahiji
|
||||
</a>
|
||||
<span class="mx-2">•</span>
|
||||
<span class="opacity-75">All rights reserved</span>
|
||||
<span class="mx-2">-</span>
|
||||
<span class="opacity-75">v{version}</span>
|
||||
</p>
|
||||
</aside>
|
||||
</footer>
|
||||
|
|
|
@ -12,7 +12,7 @@ import Footer from "../components/navigation/Footer.astro";
|
|||
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🦋</text></svg>"
|
||||
/>
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>PDS Manager</title>
|
||||
<title>BlueSky PDS Manager</title>
|
||||
</head>
|
||||
<body class="min-h-screen flex flex-col bg-base-200">
|
||||
<slot />
|
||||
|
|
Loading…
Add table
Reference in a new issue