File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
apps/marketing/src/app/getting-started Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments