55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
import Head from 'next/head';
|
|
import Image from 'next/image';
|
|
import styles from '../styles/Home.module.css';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className={styles.container}>
|
|
<main className="space-y-10">
|
|
<p id="main-title">nirvana</p>
|
|
|
|
<p>🍃your minimalist social media</p>
|
|
|
|
<p>
|
|
tired of the rat race on{' '}
|
|
<font className='text-gray-300'>insta, tiktok, snap, "meta"...</font>?
|
|
</p>
|
|
|
|
<p>
|
|
start your detox with us and:
|
|
<br />
|
|
- live in the present
|
|
<br />
|
|
- build a more intimate inner circle
|
|
<br />
|
|
- cut out the noise
|
|
<br />
|
|
- focus on your personal goals
|
|
<br />
|
|
</p>
|
|
|
|
<p>
|
|
wanna test the beta? text us @ <font className='text-gray-300'>949.237.2715</font>
|
|
</p>
|
|
|
|
{/* <marquee
|
|
direction="left"
|
|
width="100%"
|
|
height="100%"
|
|
behavior="scroll"
|
|
scrollamount="12"
|
|
offset="0%"
|
|
>
|
|
<p id="marquee-text">waitlist currently sitting at 2,324 people...</p>
|
|
</marquee> */}
|
|
|
|
<p id="side-note">
|
|
p.s. we don't sell your data or hire phd's to drug you...
|
|
<br />
|
|
<Image src="/zuck.jpg" alt="mark zuckerberg" width={60} height={60} />
|
|
</p>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|