docs(readme): attribution
This commit is contained in:
9
src/lib/Footer.svelte
Normal file
9
src/lib/Footer.svelte
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="mt-24 flex justify-center border-t border-t-gray-800 p-2">
|
||||
<a
|
||||
class="rounded-sm p-2 transition-colors hover:bg-surface-muted"
|
||||
href="https://git.lucalise.ca/lucalise/ghostv2"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="text-sm text-text-muted">Source & Attribution</span>
|
||||
</a>
|
||||
</div>
|
||||
@@ -23,8 +23,8 @@
|
||||
};
|
||||
</script>
|
||||
|
||||
<div class="h-14 w-full bg-[#292e42] sm:p-2">
|
||||
<div class="mx-auto flex h-full max-w-312 items-center justify-between">
|
||||
<div class="flex h-14 w-full items-center bg-[#292e42] sm:p-2">
|
||||
<div class="mx-auto flex h-full max-w-312 flex-1 items-center justify-between">
|
||||
<Button.Root onclick={() => goto('/')}>
|
||||
<h1 class="header-title font-light">Project Host</h1>
|
||||
</Button.Root>
|
||||
|
||||
@@ -2,6 +2,6 @@ import { jwtClient, adminClient } from 'better-auth/client/plugins';
|
||||
import { createAuthClient } from 'better-auth/svelte';
|
||||
|
||||
export const authClient = createAuthClient({
|
||||
baseURL: process.env.BETTER_AUTH_URL!,
|
||||
plugins: [jwtClient(), adminClient()]
|
||||
baseURL: 'http://localhost:5173',
|
||||
plugins: [jwtClient(), adminClient()]
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user