ai-helpdesk-api / Frontend /src /user /UserLayout.jsx
ritesh19180's picture
Upload folder using huggingface_hub
d96d2a2 verified
Raw
History Blame Contribute Delete
629 Bytes
import React from 'react';
import { Outlet } from 'react-router-dom';
import TopNav from './components/TopNav';
import NotificationToast from './components/NotificationToast';
const UserLayout = () => {
return (
<div className="bg-[#f6f8f7] min-h-screen flex flex-col text-slate-900 transition-colors duration-200 antialiased font-sans">
<TopNav />
{/* The routed content like Dashboard or CreateTicket will render here */}
<Outlet />
{/* Global real-time notifications popup */}
<NotificationToast />
</div>
);
};
export default UserLayout;