Skip to content

Commit 568e5fc

Browse files
committed
Create page.tsx
1 parent 663dd1f commit 568e5fc

File tree

1 file changed

+33
-0
lines changed
  • apps/marketing/src/app/getting-started

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { Button } from "@pixeleye/ui";
2+
import { Metadata } from "next";
3+
import Link from "next/link";
4+
5+
export const metadata: Metadata = {
6+
title: "Getting Started | Pixeleye",
7+
description: "How to get started with Pixeleye",
8+
};
9+
10+
export default function GettingStartedPage() {
11+
return (
12+
<div className="mt-24 flex items-center justify-center px-4">
13+
<div className="max-w-2xl text-center">
14+
<h1 className="text-4xl font-bold text-on-surface mb-6">
15+
Cloud Hosting Shutdown
16+
</h1>
17+
18+
<p className="text-xl text-on-surface-variant mb-4">
19+
We've had to take the difficult decision to shutdown our cloud hosting
20+
of Pixeleye.
21+
</p>
22+
23+
<p className="text-lg text-on-surface-variant mb-8">
24+
The project is still alive and self-hostable.
25+
</p>
26+
27+
<Button asChild size="lg">
28+
<Link href="/docs/guides/self-hosting">Self Host</Link>
29+
</Button>
30+
</div>
31+
</div>
32+
);
33+
}

0 commit comments

Comments
 (0)