diff --git a/public/data-editor.png b/public/data-editor.png
new file mode 100644
index 00000000..785ce34b
Binary files /dev/null and b/public/data-editor.png differ
diff --git a/public/edit-table.png b/public/edit-table.png
new file mode 100644
index 00000000..48c76a60
Binary files /dev/null and b/public/edit-table.png differ
diff --git a/public/open-source.png b/public/open-source.png
new file mode 100644
index 00000000..99462fd7
Binary files /dev/null and b/public/open-source.png differ
diff --git a/public/screenshot2.png b/public/screenshot2.png
new file mode 100644
index 00000000..b0efc635
Binary files /dev/null and b/public/screenshot2.png differ
diff --git a/public/sql-editor.png b/public/sql-editor.png
new file mode 100644
index 00000000..e2dd159c
Binary files /dev/null and b/public/sql-editor.png differ
diff --git a/src/app/connect/page.tsx b/src/app/connect/page.tsx
new file mode 100644
index 00000000..8d6fd222
--- /dev/null
+++ b/src/app/connect/page.tsx
@@ -0,0 +1,23 @@
+import { Metadata } from "next";
+import dynamic from "next/dynamic";
+
+export const metadata: Metadata = {
+ title: "LibSQL Studio - Fast and powerful LibSQL client on your browser",
+ description:
+ "LibSQL Studio - Fast and powerful LibSQL client on your browser",
+};
+
+const ConnectionConfigScreen = dynamic(
+ () => import("../../components/connection-config-list"),
+ {
+ ssr: false,
+ }
+);
+
+export default function Home() {
+ return (
+
+ LibSQL Studio
+
+
+
+ LibSQL Studio is powerful and lightweight libSQL and Sqlite client that + run from your browser. Cross platform and no download needed. +
+ ++ The handy data editor allows you to add, delete, and edit + information. +
+ ++ Any changes you make in the data editor are saved on your device + and can be submitted all at once. +
+ ++ You can export any table or result set in various formats such + as CSV, JSON, and SQL. +
++ LibSQL Studio offers a simple query editor with auto-completion + features. You can run multiple queries and view their results +
+Enjoy unlimited query tab.
++ LibSQL Studio allows you to quickly create, modify, and remove + table columns with just a few clicks without writing any SQL. +
+ ++ Before executing, you have the option to preview the SQL script + for creating or modifying a table. +
++ There is no need to download anything. LibSQL Studio runs directly + in your favorite web browser, making it compatible across + different platforms. +
+ ++ LibSQL Studio is open source and completely free to use. You have + the opportunity to suggest new features or even contribute to + adding them yourself. +
++ Since browser has no file access and sqlite database is a file, we + need to run agent to remove this browser restriction. +
+ +
+ npx sqlstudio open hello.db
+
+