Files
oh-my-opencode/packages/web/app/[locale]/manifesto/layout.tsx
T
2026-05-18 16:44:02 +09:00

12 lines
344 B
TypeScript

import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Ultrawork Manifesto",
description:
"The philosophy of high-output engineering. Why human developers should be architects, not spell-checkers.",
}
export default function ManifestoLayout({ children }: { children: React.ReactNode }) {
return children
}