mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-07 00:06:32 +08:00
30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
import Image from "next/image";
|
|
import { CallToAction } from "src/components/CallToAction";
|
|
import { Container } from "src/components/Container";
|
|
import Roadmap from "src/components/Roadmap";
|
|
import Services from "src/components/Services";
|
|
import Vision from "src/components/Vision";
|
|
export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props";
|
|
|
|
const BrbPage = () => {
|
|
return (
|
|
<div>
|
|
<Container className="">
|
|
<div className="grid gap-16 items-center py-20 md:py-40 lg:grid-cols-2">
|
|
<div className="m-auto order-2 lg:order-1">
|
|
<Image src="/images/logos/logo.png" width={450} height={450} alt="temp-image" />
|
|
</div>
|
|
<div className="space-y-8 order-1 lg:order-2">
|
|
<div>
|
|
<h1 className="text-4xl mb-6">Down for maintenance</h1>
|
|
</div>
|
|
<p className="text-2xl">{"We are improving the service, we'll be back in very few minutes."}</p>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default BrbPage;
|