-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from 'react' | ||
import Link from 'next/link' | ||
import { Button, Flex, Heading, ProgressBar, Text } from '@pillar-ui/core' | ||
|
||
export default function ComingSoon() { | ||
return ( | ||
<Flex style={{ maxWidth: '680px' }} justify="center" direction="col" items="center" gap="6" className="hero"> | ||
<Heading size="9" weight="7"> | ||
Coming Soon: Support Us! | ||
</Heading> | ||
<Text low size="6"> | ||
We‘re working hard to improve this site and bring you more features. You can support us by donating. Stay | ||
tuned for the donation feature, and thank you for being a part of our journey! | ||
</Text> | ||
<ProgressBar label="Progress" value={90} /> | ||
<Button as={Link} href="/"> | ||
Return to Home | ||
</Button> | ||
</Flex> | ||
) | ||
} |