Skip to content

Commit

Permalink
docs: ⭐ new: create under development component
Browse files Browse the repository at this point in the history
  • Loading branch information
xandemon committed May 23, 2024
1 parent ba57e43 commit 9c7f8e7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/src/components/UnderDevelopment.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
import { Button } from "./ui/button";
import { publicBaseUrl } from "@/lib/utils";
---

<div class="w-full flex flex-col items-center justify-center gap-6">
<img
src={`${publicBaseUrl}/under-development.png`}
alt="Page Under Development"
class="max-w-md"
/>
<div class="flex flex-col items-center justify-center gap-4">
<h3 class="text-5xl font-bold">Working on it.</h3>
<p class="text-2xl font-medium opacity-80">
This page is currently under development.
</p>
<Button variant={"outline"}>Wanna contribute?</Button>
</div>
</div>

0 comments on commit 9c7f8e7

Please sign in to comment.