diff --git a/CHANGELOG.md b/CHANGELOG.md
index 440112a7a..28a4aacce 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,17 @@
# Changelog
+## v1.0.0-56
+
+
+### 🏡 Chore
+
+- Add some links ([2a2beb3](https://github.com/undb-io/undb/commit/2a2beb3))
+
+### ❤️ Contributors
+
+- Nichenqin ([@nichenqin](http://github.com/nichenqin))
+
## v1.0.0-55
diff --git a/README.md b/README.md
index 0e714c59c..a982571e0 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,23 @@ UNDB is a no-code platform that can also serve as a Backend as a Service (BaaS).
Roadmap
+
+
+
+
+
+
+
+

+
+
## Features
- ⚡ No-code platform, easy to use
diff --git a/apps/frontend/src/lib/components/blocks/member/member-menu.svelte b/apps/frontend/src/lib/components/blocks/member/member-menu.svelte
index 9f1a46836..26a69a94a 100644
--- a/apps/frontend/src/lib/components/blocks/member/member-menu.svelte
+++ b/apps/frontend/src/lib/components/blocks/member/member-menu.svelte
@@ -2,9 +2,11 @@
import Button from "$lib/components/ui/button/button.svelte"
import * as DropdownMenu from "$lib/components/ui/dropdown-menu"
import * as Avatar from "$lib/components/ui/avatar"
- import { KeyIcon, LogOutIcon, SettingsIcon } from "lucide-svelte"
+ import { ExternalLinkIcon, KeyIcon, LogOutIcon, SettingsIcon } from "lucide-svelte"
import { createMutation } from "@tanstack/svelte-query"
import { goto } from "$app/navigation"
+ import Logo from "$lib/images/logo.svg"
+ import GithubLogo from "$lib/images/github.svg"
export let user: { avatar: string | null; username: string; userId: string }
@@ -49,6 +51,16 @@
Api Token
+
+
+ Undb Website
+
+
+
+
+ Github
+
+
diff --git a/apps/frontend/src/lib/trpc/client.ts b/apps/frontend/src/lib/trpc/client.ts
index c14cfc098..2001dbc6a 100644
--- a/apps/frontend/src/lib/trpc/client.ts
+++ b/apps/frontend/src/lib/trpc/client.ts
@@ -1,9 +1,9 @@
-import { createTRPCProxyClient, httpBatchLink } from "@trpc/client"
+import { createTRPCProxyClient, httpLink } from "@trpc/client"
import type { AppRouter } from "@undb/trpc"
export const trpc = createTRPCProxyClient({
links: [
- httpBatchLink({
+ httpLink({
url: "/trpc",
}),
],
diff --git a/apps/frontend/src/routes/(auth)/login/+page.svelte b/apps/frontend/src/routes/(auth)/login/+page.svelte
index 64d795205..751e0ed0d 100644
--- a/apps/frontend/src/routes/(auth)/login/+page.svelte
+++ b/apps/frontend/src/routes/(auth)/login/+page.svelte
@@ -178,6 +178,7 @@