···11-import type { Metadata } from "next";
22-33-import Link from "next/link";
44-55-export const metadata: Metadata = {
66- title: "eny.space – your data, your space, use it enywhere",
77-};
88-99-export default function IndexPage(): JSX.Element {
1010- return (
1111- <main>
1212- <h1>Your own custom PDS in seconds</h1>
1313- <h2>One-click ATProto hosting with eny.space</h2>
1414- <p>
1515- We're building a managed ATProto Personal Data Server (PDS)
1616- platform so you can focus on your product while we handle the
1717- infrastructure, scaling, and compliance.
1818- </p>
1919-2020- <h3>What's coming soon</h3>
2121- <ul>
2222- <li>One-click provisioning of dedicated ATProto PDS instances</li>
2323- <li>Automatic backups and seamless upgrades</li>
2424- <li>Usage-based pricing with clear, predictable costs</li>
2525- </ul>
11+import { ComponentExample } from "@/actions/components/component-example";
2622727- <h3>Be the first to know</h3>
2828- <p>
2929- We're onboarding early adopters now. If you're building on
3030- ATProto and want reliable managed hosting, we'd love to hear from
3131- you.
3232- </p>
3333-3434- <p>
3535- <Link href="mailto:hello@krekeny.com?subject=I%27d%20like%20early%20access%20to%20eny.space%20PDS">
3636- Request early access
3737- </Link>
3838- </p>
3939- </main>
4040- );
33+export default function Page() {
44+ return <ComponentExample />;
415}