Add ses hook parser to capture all the events

This commit is contained in:
KMKoushik
2024-04-16 14:04:30 +10:00
parent 293277ed32
commit 9465960f0a
22 changed files with 712 additions and 105 deletions

View File

@@ -1,3 +1,5 @@
"use client";
import Link from "next/link";
import {
Bell,
@@ -23,7 +25,15 @@ import {
} from "@unsend/ui/src/dropdown-menu";
import { Input } from "@unsend/ui/src/input";
import { Sheet, SheetContent, SheetTrigger } from "@unsend/ui/src/sheet";
import DashboardChart from "./dashboard-chart";
export default function Dashboard() {
return <div>Hello</div>;
return (
<div>
Dashboard
<div className="mx-auto flex justify-center item-center mt-[30vh]">
<DashboardChart />
</div>
</div>
);
}