org setup wip

This commit is contained in:
Milo Schwartz
2024-12-21 14:11:10 -05:00
parent 7252876768
commit 0d30ac2ddc
11 changed files with 284 additions and 221 deletions

View File

@@ -5,13 +5,13 @@ import { cache } from "react";
export const metadata: Metadata = {
title: `Setup - Pangolin`,
description: "",
description: ""
};
export const dynamic = "force-dynamic";
export default async function SetupLayout({
children,
children
}: {
children: React.ReactNode;
}) {
@@ -22,5 +22,5 @@ export default async function SetupLayout({
redirect("/?redirect=/setup");
}
return <div className="mt-32">{children}</div>;
return <div className="w-full max-w-2xl mx-auto p-3 md:mt-32">{children}</div>;
}