Skip to content

Commit

Permalink
Text changes (#693)
Browse files Browse the repository at this point in the history
* preliminary landing page changes

* text change

* add placeholder link

* Update favicon

* Update footer

* Adjust layout to footer changes

* add form link

---------

Co-authored-by: camilovegag <[email protected]>
  • Loading branch information
MartinBenediktBusch and camilovegag authored Jul 22, 2024
1 parent fbaa3b1 commit cbcd143
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 66 deletions.
4 changes: 2 additions & 2 deletions packages/berlin/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Plural Research Experiment. An experiment in collective intelligence and innovation"
content="Tools built by Lexicon Governance"
/>
<title>Plural Research Experiment</title>
<title>Plurality Demo</title>
</head>
<body>
<div id="root"></div>
Expand Down
Binary file modified packages/berlin/public/favicon.ico
Binary file not shown.
26 changes: 1 addition & 25 deletions packages/berlin/src/data/footer.ts
Original file line number Diff line number Diff line change
@@ -1,30 +1,6 @@
const footer = {
copy: [
{ id: 0, text: 'A grants program funded by Plurality Labs and the Arbitrum DAO' },
{ id: 1, text: 'Co-sponsored by RadicalXChange, MetaGov & De-Sci Foundation' },
{ id: 2, text: 'Tooling built by Lexicon Governance' },
],
copy: [{ id: 0, text: 'Tooling built by Lexicon Governance' }],
logos: [
{
src: `arbitrum`, // src here its just the filename as we render it as `/logo/${src}-{theme}.svg`
alt: 'Arbitrum',
link: 'https://arbitrum.foundation/grants',
},
{
src: `radicalxchange`,
alt: 'RadicalXChange',
link: 'https://www.radicalxchange.org/',
},
{
src: `metagov`,
alt: 'MetaGov',
link: 'https://metagov.org/',
},
{
src: `desci`,
alt: 'De-Sci Foundation',
link: 'https://www.descifoundation.org/',
},
{
src: `lexicon`,
alt: 'Lexicon Governance',
Expand Down
6 changes: 3 additions & 3 deletions packages/berlin/src/data/header.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const header = {
logo: {
src: '/logos/logo.png',
alt: 'Plural Research Experiment logo, a prism with an incoming light beam and a rainbow',
alt: 'Lexicon Governance Logo',
},
title: 'Plural Research Experiment',
subtitle: 'An experiment in collective intelligence and innovation',
title: 'Plurality Demo',
subtitle: 'Lexicon Governance',
};

export default header;
2 changes: 1 addition & 1 deletion packages/berlin/src/layout/Layout.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from 'styled-components';

export const Main = styled.main`
margin-inline: auto;
min-height: calc(100vh - 21.5rem);
min-height: calc(100vh - 17.5rem);
padding-block: 4rem;
width: min(90%, 1080px);
`;
Expand Down
48 changes: 13 additions & 35 deletions packages/berlin/src/pages/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,51 +4,29 @@ import { Bold } from '../components/typography/Bold.styled';
import { FlexColumn } from '../components/containers/FlexColumn.styled';
import { SafeArea } from '../layout/Layout.styled';
import ZupassButton from '../components/zupass-button';
import Link from '../components/link';

function Landing() {
return (
<SafeArea>
<FlexColumn $gap="2rem">
<Body>
We are a <Bold>community of open-source researchers</Bold> committed to solving the
hardest problems in decentralization, including the challenge of maintaining research and
academic independence in the wake of technological vertical integration and
hyper-financialization. Using <Bold>plural mechanism design</Bold>, we experiment with
novel ways to surface ideas in the public interest that transcend our biases — protocol,
politics, purse — while encouraging collaboration and insights across unlikely
intersections where breakthroughs tend to emerge.
This tool is designed to demonstrate Lexicon’s plural governance tooling. Users can
register, discuss, and vote on proposals, with vote results calculated quadratically or
plurally, with bridging bonuses calculated based on relationships between participants.
</Body>
<Body>
Our first convening was <Bold>May 28 in Berlin</Bold>, where the community was tasked to
allocate 100,000 ARB in research grants.
</Body>
<Body>
The <Bold>funding mandate is MEV</Bold>. We invite research proposals that explore MEV
narrowly and broadly — within and across execution layers (L1), rollups (L2s), oracles,
applications, etc. The mandate also extends to related topics such as chain abstraction,
account abstraction, gas fee optimization, AI agents, ZK, trusted hardware, and topics
related to decentralization — including richer notions of identity, contextual integrity
(“privacy”), collusion resistance, and partial common ownership.
</Body>
<Body>
This is a community event, <Bold>where researchers set the agenda.</Bold> Through a series
of structured interactions, the community will prioritize research and allocate funds,
relying on plural mechanisms —{' '}
<Bold>
deliberation, plural voting, peer prediction, and healthy social recombination
</Bold>{' '}
— to surface research in the broader public good.
</Body>
<Body>
The experiment will be novel, fun, and weird — like the best of research… and Berlin.
Surprise the community with your proposals!
</Body>
<Body>
Sign up with{' '}
If you’re here as part of a demo, please login with{' '}
<ZupassButton $variant="link">
<Bold>Zupass here.</Bold>
<Bold>Zupass</Bold>
</ZupassButton>{' '}
Submissions received before May 15 will get more attention.
to continue.
</Body>
<Body>
If you’ve arrived here by other means, please check out our{' '}
<Link to="https://github.com/lexicongovernance">GitHub</Link> or{' '}
<Link to="https://forms.gle/zfvTcFP7ufwZ175f6">click here</Link> to request a
demonstration.
</Body>
</FlexColumn>
</SafeArea>
Expand Down

0 comments on commit cbcd143

Please sign in to comment.