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>
20 lines
542 B
TypeScript
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} />;
|
|
}
|