first commit

This commit is contained in:
2026-07-17 21:48:37 +05:30
commit f85599dac5
124 changed files with 10775 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Placeholder } from "@/components/Placeholder";
import { Send } from "lucide-react";
export default function DraftsPage() {
return (
<Placeholder
eyebrow="Messaging"
title="Drafts & sent"
subtitle="Unsent drafts and scheduled messages"
icon={<Send size={24} />}
body="Scheduled sends from the composer land here until they're delivered. Gated by the `drafts` and `scheduledSend` feature flags."
/>
);
}