-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: created home page for Rafiki Admin (#2062)
- Loading branch information
1 parent
8d9926b
commit 9f2a1cc
Showing
1 changed file
with
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
import { version } from '../../../../package.json' | ||
|
||
export default function Index() { | ||
return <></> | ||
return ( | ||
<div className='pt-4 flex flex-col'> | ||
<div className='flex flex-col rounded-md bg-offwhite px-6 text-center min-h-[calc(100vh-3rem)]'> | ||
<div className='p-10 space-y-16'> | ||
<h1 className='text-9xl pt-16 text-[#F37F64]'>Welcome!</h1> | ||
<div className='space-y-8'> | ||
<p className='text-7xl'>Rafiki Admin</p> | ||
<p>This is Rafiki's administrative user interface.</p> | ||
<p>v{version}</p> | ||
</div> | ||
<p> | ||
In this web application, you'll be able to manage peering | ||
relationships, assets, and payment pointers, among other settings. | ||
</p> | ||
<p> | ||
<a href='https://rafiki.dev' className='font-semibold'> | ||
https://rafiki.dev | ||
</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |