Files
voyage/apps/public-web/app/(site)/layout.tsx
2026-01-24 19:40:20 +01:00

9 lines
230 B
TypeScript

import type { ReactNode } from "react";
export default function SiteLayout({ children }: { children: ReactNode }) {
return (
<div className="px-6 py-6 md:px-12 md:py-10">
{children}
</div>
);
}