ce63faa8f3
Replace the Astro static site with a TanStack Start (Bun runtime) app and add Dockerfile + compose files so the site can be served from home-main-2 behind the home-reverse-proxy-1 Caddy instead of Netlify. CI workflow rewritten to build a container image and SSH-deploy to the home host.
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
import type { FC, ReactNode } from "react";
|
|
import Section from "./Section";
|
|
|
|
const LegalPage: FC<{ children: ReactNode }> = ({ children }) => {
|
|
return (
|
|
<Section>
|
|
<article className="markdown">{children}</article>
|
|
</Section>
|
|
);
|
|
};
|
|
|
|
export default LegalPage;
|