import { Button } from "@/components/ui/button"; import Avatar from "@/feature/Avatar"; import { useAuth } from "@/store/auth"; import { type FC } from "react"; const Home: FC = () => { const profile = useAuth((state) => state.profile); const signOut = useAuth((state) => state.signOut); return (

Welcome, {profile?.full_name}

Manage your info, private and security to make Home Guard work better for you.

); }; export default Home;