Files
lixiyu-net/components/layouts/index.tsx

8 lines
346 B
TypeScript
Raw Normal View History

2023-12-25 17:21:39 +08:00
export const Page = ({ children }: { children: React.ReactNode }) => {
return <div className="flex min-h-screen flex-col justify-between">{children}</div>;
};
export const ContentContainer = ({ children }: { children: React.ReactNode }) => {
return <main className="flex-grow px-5 md:px-10 lg:px-20 xl:px-32 2xl:px-52">{children}</main>;
2023-12-25 17:21:39 +08:00
};