Skip to content

Commit

Permalink
feat: remove line break between paragraphs in rewards page
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikssonJoakim committed Oct 31, 2022
1 parent 09dfcb0 commit a5c8167
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/pages/rewards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,19 @@ import { Footer } from '../components/layout/footer/Footer'
import { Header } from '../components/layout/header/Header'
import type { Config } from '../types/config.type'

export type RewardsProps = Pick<Config, "title" | "keywords" | "urls">

export type RewardsProps = Pick<Config, 'title' | 'keywords' | 'urls'>

const Rewards: NextPage<RewardsProps> = ({ keywords, title, urls }) => {
const { typeformUrl } = urls

return (
<div className="okp4-nemeton-web-page-main">
<Head keywords={keywords} title={title}/>
<Head keywords={keywords} title={title} />
<main>
<Header typeformUrl={typeformUrl} />
<div className="okp4-nemeton-web-page-content-container">
<h1>Rewards</h1>
<p>Druids will be rewarded with a mix of token rewards + delegation commitment.</p>
<br />
<p>
1% of the total supply of mainnet tokens will be given to Druids as a reward based on
their participation and performance during the program.Many more tokens (OKP4 foundation
Expand Down

0 comments on commit a5c8167

Please sign in to comment.