Skip to content

Commit

Permalink
Generate browser build
Browse files Browse the repository at this point in the history
  • Loading branch information
martindale committed Dec 3, 2024
1 parent addf459 commit c96b465
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 17 deletions.
2 changes: 1 addition & 1 deletion assets/bundles/browser.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions assets/styles/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -1035,6 +1035,10 @@ fabric-motd {
width: '100%';
}

.splash-page .buttons {
margin-top: 2em;
}

.splash-page section {
margin-bottom: 4em;
}
24 changes: 8 additions & 16 deletions components/FrontPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,26 +39,18 @@ class FrontPage extends React.Component {

render () {
return (
<sensemaker-front-page class='splash-page'>
<HeaderBar showBrand={false} showButtons={true} />
<sensemaker-front-page class='splash-page fade-in'>
<HeaderBar showBrand={false} showButtons={false} />
<section>
<Header as='h1' style={{ fontSize: '8em' }}>{BRAND_NAME}</Header>
<p style={{ fontSize: '2em', width: '320px' }}>{BRAND_TAGLINE}</p>
<p style={{ fontSize: '1.2em', marginBottom: '1em' }}>{PITCH_CTA_TEXT}</p>
<Button as={Link} to='/sessions' color='black' size='huge' labelPosition='right' icon>Get Started <Icon name='right chevron' /></Button>
<p style={{ fontSize: '1.2em', marginBottom: '2em' }}>{PITCH_CTA_TEXT}</p>
<Button.Group floated='right' size='huge'>
<Button as={Link} to='/sessions' color='green'><Icon name='key' /> Sign In</Button>
<Button.Or />
<Button as={Link} to='/inquiries' color='black'>Apply <Icon name='right chevron' /></Button>
</Button.Group>
</section>
<secton>
<Header as='h2'>Local Intelligence</Header>
<p>Keep your data local, manage your costs, and ensure reliability with Sensemaker's offline-first design.</p>
</secton>
<secton>
<Header as='h2'>Network Analysis</Header>
<p>Consume data streams from a variety of sources, including a robust peer-to-peer network of other users.</p>
</secton>
<secton>
<Header as='h2'>Earn for Insights</Header>
<p>Get rewarded for valuable contributions to the network.</p>
</secton>
</sensemaker-front-page>
);
}
Expand Down

0 comments on commit c96b465

Please sign in to comment.