Skip to content

Commit

Permalink
refactor: Swap hero section content order and adjust padding
Browse files Browse the repository at this point in the history
  • Loading branch information
aidamiscom committed Jan 4, 2025
1 parent 787b75e commit 95a8da0
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,26 +154,6 @@ function HomepageHeader() {
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<canvas id="neural" className={styles.headerCanvas} />
<div className={`container ${styles.heroContainer} ${styles.heroContent}`}>
<div style={{textAlign: 'left', maxWidth: '90%', paddingRight: '1rem'}}>
<Heading as="h1" className="hero__title" style={{ fontSize: '1.96rem', fontWeight: 'bold', color: 'var(--ifm-color-primary)', }}>
{siteConfig.title}
</Heading>
<p className="hero__subtitle" style={{ fontSize: '1.5rem', color: 'var(--ifm-font-color-base)' }}>
{siteConfig.tagline}
</p>
<p style={{ fontSize: '1.2rem', color: 'var(--ifm-font-color-base)' }}>
An experimental protocol for digital content licensing with token holdings.
This system gives alternative options for content creators to define a parametric licensing framework*.
</p>
<div className={styles.buttons}>
<Link
className="button button--lg button--primary"
to="https://t.me/mainstreamtoken"
>
Join the Community 🚀
</Link>
</div>
</div>
<div style={{display: 'flex', flexDirection: 'column', alignItems: 'center', width: '100%'}}>
<div className={styles.videoContainer}>
<a
Expand All @@ -193,6 +173,26 @@ function HomepageHeader() {
</a>
</div>
</div>
<div style={{textAlign: 'left', maxWidth: '90%', paddingLeft: '1rem'}}>
<Heading as="h1" className="hero__title" style={{ fontSize: '1.96rem', fontWeight: 'bold', color: 'var(--ifm-color-primary)', }}>
{siteConfig.title}
</Heading>
<p className="hero__subtitle" style={{ fontSize: '1.5rem', color: 'var(--ifm-font-color-base)' }}>
{siteConfig.tagline}
</p>
<p style={{ fontSize: '1.2rem', color: 'var(--ifm-font-color-base)' }}>
An experimental protocol for digital content licensing with token holdings.
This system gives alternative options for content creators to define a parametric licensing framework*.
</p>
<div className={styles.buttons}>
<Link
className="button button--lg button--primary"
to="https://t.me/mainstreamtoken"
>
Join the Community 🚀
</Link>
</div>
</div>
</div>
</header>
);
Expand Down

0 comments on commit 95a8da0

Please sign in to comment.