Perplexica/ui/components/Layout.tsx

10 lines
272 B
TypeScript
Raw Normal View History

2024-04-09 16:21:05 +05:30
const Layout = ({ children }: { children: React.ReactNode }) => {
return (
2025-01-07 12:27:56 +01:00
<main className="lg:pl-20 bg-[#efeaf3] dark:bg-dark-primary 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;