2026-02-22 21:35:53 +01:00
|
|
|
export default function PastelLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
2026-02-23 02:04:46 +01:00
|
|
|
<>
|
2026-02-22 21:35:53 +01:00
|
|
|
{children}
|
2026-02-23 02:04:46 +01:00
|
|
|
</>
|
2026-02-22 21:35:53 +01:00
|
|
|
);
|
|
|
|
|
}
|