// /var/www/makearmy.io/app/components/toolkit/ToolShell.tsx "use client"; import Link from "next/link"; export default function ToolShell({ title, subtitle, children, }: { title: string; subtitle?: string; children: React.ReactNode; }) { return (

{title}

{subtitle && (

{subtitle}

)}
Back to Main Menu
{children}
); }