"use client";
import GmailAgentUI from '../../components/GmailAgentUI';
export default function GmailPage() {
return (
<div style={{ height: "100vh", width: "100vw", background: "#05070a", overflow: "auto", padding: "20px" }}>
<GmailAgentUI />
</div>
);
}