Perplexica/ui/components/Layout.tsx

10 lines
274 B
TypeScript
Raw Normal View History

2024-04-09 16:21:05 +05:30
const Layout = ({ children }: { children: React.ReactNode }) => {
return (
2024-05-24 20:29:49 +08:00
<main className="lg:pl-20 bg-primaryLight dark:bg-primaryDark min-h-screen">
2024-04-09 16:21:05 +05:30
<div className="max-w-screen-lg lg:mx-auto mx-4">{children}</div>
</main>
);
};
export default Layout;