fosrl.pangolin/src/app/setup/layout.tsx

15 lines
279 B
TypeScript
Raw Normal View History

import { Metadata } from "next";
export const metadata: Metadata = {
title: `Setup - Pangolin`,
description: "",
};
2024-10-19 16:37:40 -04:00
export default async function SetupLayout({
children,
}: {
children: React.ReactNode;
}) {
return <div className="mt-32">{children}</div>;
}