Skip to content

Commit

Permalink
feat: add coming soon page
Browse files Browse the repository at this point in the history
  • Loading branch information
HamzaAmar committed Jan 28, 2025
1 parent dfdd358 commit f26be53
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/docs/src/app/_components/aside/_aside.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
scrollbar-color: var(--O8) transparent;
scrollbar-width: thin;
transition: transform 0.2s;
border-inline-end: 1px solid var(--B4);

&[data-mobile-open='true'] {
transform: none;
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/app/_components/home/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function Hero() {
Get Started
</Button>

<Button color="b" variant="outline" icon={<Dollar />}>
<Button as={Link} href="/coming-soon" color="b" variant="outline" icon={<Dollar />}>
Donation
</Button>
</Flex>
Expand Down
21 changes: 21 additions & 0 deletions apps/docs/src/app/coming-soon/page.tsx
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&lsquo;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>
)
}

0 comments on commit f26be53

Please sign in to comment.