diff --git a/app/create/page.tsx b/app/create/page.tsx
index cfd32c2..d478010 100644
--- a/app/create/page.tsx
+++ b/app/create/page.tsx
@@ -1,10 +1,12 @@
+import { Container } from "@/components/ui/container";
+
export default function CreateGistPage() {
return (
-
+
Create New Gist
This page will contain the form for creating encrypted gists.
-
+
);
}
diff --git a/app/g/[id]/page.tsx b/app/g/[id]/page.tsx
index f2d3919..757fe76 100644
--- a/app/g/[id]/page.tsx
+++ b/app/g/[id]/page.tsx
@@ -1,3 +1,5 @@
+import { Container } from "@/components/ui/container";
+
export default async function ViewGistPage({
params,
}: {
@@ -6,12 +8,12 @@ export default async function ViewGistPage({
const { id } = await params;
return (
-
+
View Gist
This page will display the gist viewer for viewing encrypted gists.
Gist ID: {id}
-
+
);
}
diff --git a/app/page.tsx b/app/page.tsx
index c4ef113..43afcfb 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,9 +1,10 @@
import { R2Test } from "@/components/r2-test";
+import { Container } from "@/components/ui/container";
export default function Home() {
return (
-
-
+
+
Zero-Knowledge Encrypted Code Sharing
@@ -30,7 +31,7 @@ export default function Home() {
R2 Bucket Test
-
-
+
+
);
}