perplexica/ui/components/Layout.tsx

10 lines
276 B
TypeScript
Raw Normal View History

2024-04-09 10:51:05 +00:00
const Layout = ({ children }: { children: React.ReactNode }) => {
return (
2024-05-27 03:49:09 +00:00
<main className="lg:pl-20 bg-light-primary dark:bg-dark-primary min-h-screen">
2024-04-09 10:51:05 +00:00
<div className="max-w-screen-lg lg:mx-auto mx-4">{children}</div>
</main>
);
};
export default Layout;