Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update logo #70

Merged
merged 8 commits into from
Apr 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 55 additions & 1 deletion public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 7 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
import type { NextPage } from 'next'
import Image from 'next/image'
import Link from 'next/link'
import { Layout, Panel } from '../components/layout'

const Home: NextPage = () => {
return (
<Layout>
<div className='space-y-2'>
<Panel className='p-4 space-y-2'>
<h1 className='text-lg font-semibold'>Round Table</h1>
<p>Round Table is ADAO Community’s open-source, multi-signature dApp. ADAO plans to publish a user guide and proper documentation to allow for easier contribution to our open-source repository, and ease Round Table’s adoption by Cardano community projects and organisations. ADAO has already developed working minimum viable product (MVP) and is performing tests and reviews both internally and in collaboration with partner organisations.</p>
<p>You can load your data in config page.</p>
<Image src='/logo.svg' width={200} height={400} alt='brand' />
<div className='flex justify-center'>
<Image src='/logo.svg' width={200} height={260} alt='brand' />
</div>
<p>Round Table is ADAO Community’s open-source, multi-signature dApp on Cardano blockchain. It aims at making Multi-Sig easy, funny and comfortable. The project is designed and developed with decentralization in mind. All the libraries and tools were chosen in favor of decentralization. There is no server to keep your data. Your data is your own. It runs on your browser just like any other light wallets. You could also run it on your own PC easily.</p>
<p>Round Table supports Nami, Eternl/cc and Gero wallets to sign so far. Flint Experimental can be used as well. Start your Multi-Sig journey by creating treasuries with your friends or family, or by <Link href='/config'><a className='text-sky-700'>importing your data</a></Link>.</p>
<p>We have a nice community. If you have any issue or question, feel free to reach out to us on <a className='text-sky-700' target='_blank' rel='noreferrer' href='https://github.com/ADAOcommunity/round-table'>Github</a> or <a className='text-sky-700' target='_blank' rel='noreferrer' href='https://discord.gg/SDnm4GzY'>Discord</a>.</p>
</Panel>
</div>
</Layout>
Expand Down