import type { ReactNode } from "react"; import Link from "next/link"; import { JusticeScale01Icon } from "@hugeicons/core-free-icons"; import { AppLogo } from "@/components/shared/app-logo"; import { Icon } from "@/components/shared/icon"; import { Card, CardContent } from "@/components/ui/card"; type AuthShellProps = { eyebrow: string; title: string; description: string; alternateHref: string; alternateLabel: string; alternateAction: string; children: ReactNode; }; export function AuthShell({ eyebrow, title, description, alternateHref, alternateLabel, alternateAction, children, }: AuthShellProps) { return (
{eyebrow}

{title}

{description}

بداية مرتبة وواضحة

الواجهة دي معمولة للمحامين والفرق الصغيرة اللي محتاجة تدخل بسرعة وتبدأ شغلها من غير تعقيد.

{children}

{alternateLabel}{" "} {alternateAction}

); }