Initial state for GitNexus analysis

This commit is contained in:
Zaid Marzguioui
2026-03-29 19:44:57 +02:00
parent 9d7c7f8030
commit 61ff48cb73
155 changed files with 23483 additions and 1722 deletions

View File

@@ -0,0 +1,117 @@
import Link from 'next/link';
import { ArrowLeft } from 'lucide-react';
import { getSupabaseServerClient } from '@kit/supabase/server-client';
import { Button } from '@kit/ui/button';
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from '@kit/ui/card';
import { Input } from '@kit/ui/input';
import { Label } from '@kit/ui/label';
import { CmsPageShell } from '~/components/cms-page-shell';
interface PageProps {
params: Promise<{ account: string }>;
}
export default async function NewSepaPage({ params }: PageProps) {
const { account } = await params;
const client = getSupabaseServerClient();
const { data: acct } = await client
.from('accounts')
.select('id')
.eq('slug', account)
.single();
if (!acct) return <div>Konto nicht gefunden</div>;
return (
<CmsPageShell account={account} title="Neuer SEPA-Einzug">
<div className="flex w-full flex-col gap-6">
{/* Back link */}
<div>
<Link
href={`/home/${account}/finance/sepa`}
className="text-muted-foreground hover:text-foreground inline-flex items-center text-sm"
>
<ArrowLeft className="mr-1 h-4 w-4" />
Zurück zu SEPA-Lastschriften
</Link>
</div>
<Card className="max-w-2xl">
<CardHeader>
<CardTitle>Neuer SEPA-Einzug</CardTitle>
<CardDescription>
Erstellen Sie einen neuen Lastschrifteinzug oder eine Überweisung.
</CardDescription>
</CardHeader>
<CardContent>
<form className="flex flex-col gap-5">
{/* Typ */}
<div className="flex flex-col gap-2">
<Label htmlFor="batchType">Typ</Label>
<select
id="batchType"
name="batchType"
className="border-input bg-background ring-offset-background placeholder:text-muted-foreground focus-visible:ring-ring flex h-10 w-full rounded-md border px-3 py-2 text-sm focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2"
defaultValue="direct_debit"
>
<option value="direct_debit">Lastschrift</option>
<option value="credit_transfer">Überweisung</option>
</select>
</div>
{/* Beschreibung */}
<div className="flex flex-col gap-2">
<Label htmlFor="description">Beschreibung</Label>
<Input
id="description"
name="description"
placeholder="z.B. Mitgliedsbeiträge Q1 2026"
required
/>
</div>
{/* Ausführungsdatum */}
<div className="flex flex-col gap-2">
<Label htmlFor="executionDate">Ausführungsdatum</Label>
<Input
id="executionDate"
name="executionDate"
type="date"
required
/>
</div>
{/* PAIN Format Info */}
<div className="rounded-md bg-muted/50 p-4 text-sm text-muted-foreground">
<p>
<strong>Hinweis:</strong> Nach dem Erstellen können Sie
einzelne Positionen hinzufügen und anschließend die
SEPA-XML-Datei generieren.
</p>
</div>
</form>
</CardContent>
<CardFooter className="flex justify-between">
<Link href={`/home/${account}/finance/sepa`}>
<Button variant="outline">Abbrechen</Button>
</Link>
<Button type="submit">Einzug erstellen</Button>
</CardFooter>
</Card>
</div>
</CmsPageShell>
);
}