* add some stripe stuff * more stripe stuff * more stripe things * more stripr stuff * more stripe stuff * more stripe stuff * add more stuff * add more stripe stuff * more stuff * fix types
23 lines
560 B
TypeScript
23 lines
560 B
TypeScript
"use client";
|
|
|
|
import { SettingsNavButton } from "./settings-nav-button";
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function ApiKeysPage({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div>
|
|
<h1 className="font-bold text-lg">Developer settings</h1>
|
|
<div className="flex gap-4 mt-4">
|
|
<SettingsNavButton href="/dev-settings">API Keys</SettingsNavButton>
|
|
<SettingsNavButton href="/dev-settings/smtp">SMTP</SettingsNavButton>
|
|
</div>
|
|
<div className="mt-8">{children}</div>
|
|
</div>
|
|
);
|
|
}
|