diff --git a/app/layout.tsx b/app/layout.tsx
index b571833..36c0e21 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -4,6 +4,7 @@ import "./globals.css";
import { ThemeProvider } from "@/components/theme-provider";
import { PropsWithChildren } from "react";
import TopMenu from "@/components/top-menu";
+import clsx from "clsx";
const font = Poppins({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
@@ -18,7 +19,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: PropsWithChildren) {
return (
-
+
- {children}
+ {children}
diff --git a/app/workspace/[id]/page.tsx b/app/workspace/[id]/page.tsx
index daadae2..fcece04 100644
--- a/app/workspace/[id]/page.tsx
+++ b/app/workspace/[id]/page.tsx
@@ -10,16 +10,14 @@ import FileExplorer from "@/components/workspace/file-explorer";
export default function Page() {
return (
-
-
-
- } bottom={Chat component
} />
-
-
-
- } bottom={} />
-
-
-
+
+
+ } bottom={Chat component
} />
+
+
+
+ } bottom={} />
+
+
);
}
diff --git a/app/workspaces/page.tsx b/app/workspaces/page.tsx
index b4fd6e2..eb3cfb1 100644
--- a/app/workspaces/page.tsx
+++ b/app/workspaces/page.tsx
@@ -5,7 +5,7 @@ import { getTemplateNames } from "@/data/template";
export default async function Page() {
const templateOptions = await getTemplateNames();
return (
-
+
Create a new workspace
@@ -14,6 +14,6 @@ export default async function Page() {
Open an existing workspace
-
+
);
}