Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
20
app/submit/settings/page.tsx
Normal file
20
app/submit/settings/page.tsx
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { Suspense } from "react";
|
||||
import SettingsSubmit from "@/app/components/forms/SettingsSubmit";
|
||||
|
||||
export const dynamic = "force-dynamic"; // keeps this page from being statically prerendered
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<div className="px-4 py-8 max-w-5xl mx-auto">
|
||||
<h1 className="text-2xl font-bold mb-2">Community Laser Settings Submission</h1>
|
||||
<p className="text-muted-foreground mb-6">
|
||||
Contribute tested settings. Submissions are reviewed before publishing.
|
||||
</p>
|
||||
|
||||
<Suspense fallback={<div className="text-sm text-muted-foreground">Loading form…</div>}>
|
||||
<SettingsSubmit />
|
||||
</Suspense>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue