Initial commit for Start9 packaging

This commit is contained in:
MacPro
2026-02-28 09:27:26 -06:00
commit 1b64c45c52
124 changed files with 15671 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { redirect } from "next/navigation";
import { getCurrentUser } from "@/lib/auth";
import ImportCSVPage from "./page-csv";
export const metadata = {
title: "Import Workouts",
description: "Import workouts from CSV",
};
export default async function ImportPage() {
const user = await getCurrentUser();
if (!user) redirect("/auth/login");
return <ImportCSVPage />;
}