Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/files/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import FilesPageHeader from "@/components/Sandboxes/FilesPageHeader";
import SandboxFileTree from "@/components/Sandboxes/SandboxFileTree";

export default async function FilesPage() {
return (
<div className="px-6 md:px-12 py-8">
<div className="px-6 md:px-12 py-8 space-y-6">
<FilesPageHeader />
<SandboxFileTree />
</div>
);
Expand Down
11 changes: 11 additions & 0 deletions components/Sandboxes/FilesPageHeader.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default function FilesPageHeader() {
return (
<div className="max-w-3xl">
<h1 className="text-left font-heading text-3xl font-bold">Files</h1>
<p className="mt-2 text-lg text-muted-foreground font-light font-sans">
Upload repository files for your agent, including images, songs, docs,
and reference material.
</p>
</div>
);
}