diff --git a/README.md b/README.md
index f108472..daa9cd0 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,4 @@
-# bknd
-**Feature-rich backend built to run anywhere.**
+
bknd simplifies backend development by providing powerful tools for data management, workflows, authentication, and media handling—all seamlessly integrated into a developer-friendly platform.
diff --git a/app/src/ui/assets/poster.png b/app/src/ui/assets/poster.png
new file mode 100644
index 0000000..b655af4
Binary files /dev/null and b/app/src/ui/assets/poster.png differ
diff --git a/app/src/ui/components/canvas/Canvas.tsx b/app/src/ui/components/canvas/Canvas.tsx
index bd3dfee..f147a3a 100644
--- a/app/src/ui/components/canvas/Canvas.tsx
+++ b/app/src/ui/components/canvas/Canvas.tsx
@@ -188,7 +188,7 @@ export function Canvas({
>
{backgroundStyle === "lines" && (
diff --git a/app/src/ui/components/table/DataTable.tsx b/app/src/ui/components/table/DataTable.tsx
index 0ea9f77..0a8acd7 100644
--- a/app/src/ui/components/table/DataTable.tsx
+++ b/app/src/ui/components/table/DataTable.tsx
@@ -229,7 +229,11 @@ export const CellValue = ({ value, property }) => {
}
if (value !== null && typeof value !== "undefined") {
- return {value};
+ return (
+
+ {value}
+
+ );
}
return null;
diff --git a/app/vite.dev.ts b/app/vite.dev.ts
index 371dacf..3c1d648 100644
--- a/app/vite.dev.ts
+++ b/app/vite.dev.ts
@@ -11,7 +11,7 @@ registries.media.add("local", {
const connection = new LibsqlConnection(
createClient({
- url: "file:.db/test.db"
+ url: "file:.db/show.db"
})
);