Files
periscope/frontend/src/app/(marketing)/terms/page.tsx
T
micheleandCursor 8d2b85600f Rebrand Pinscope to Periscope across product and codebase.
Rename the core package to periscopex, update UI/docs/Docker/deploy defaults to periscope.michelebigi.it, and keep legacy version/storage key aliases so existing projects keep working.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-13 20:02:04 +02:00

20 lines
542 B
TypeScript

import fs from "fs";
import path from "path";
import { LegalPage } from "@/components/legal/legal-page";
import { pageMetadata } from "@/lib/site";
export const metadata = pageMetadata({
title: "Terms of Service",
description:
"Terms governing your use of Periscope, including account, payment, and acceptable-use rules.",
path: "/terms",
});
export default function TermsPage() {
const content = fs.readFileSync(
path.join(process.cwd(), "content", "terms.md"),
"utf-8"
);
return <LegalPage content={content} />;
}