Initial commit

This commit is contained in:
makearmy 2025-09-22 10:37:53 -04:00
commit 78f8d225ee
21173 changed files with 2907774 additions and 0 deletions

View 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>
);
}