Update index.js

This commit is contained in:
talksik
2021-12-25 23:55:48 -08:00
parent 243065afcc
commit f4ffc5ece1
+35 -26
View File
@@ -1,6 +1,6 @@
import Head from 'next/head' import Head from 'next/head';
import Image from 'next/image' import Image from 'next/image';
import styles from '../styles/Home.module.css' import styles from '../styles/Home.module.css';
export default function Home() { export default function Home() {
return ( return (
@@ -15,11 +15,20 @@ export default function Home() {
<link rel="icon" href="/icon.png" /> <link rel="icon" href="/icon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="true" /> <link
<link href="https://fonts.googleapis.com/css2?family=Satisfy&display=swap" rel="stylesheet" /> rel="preconnect"
href="https://fonts.gstatic.com"
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&display=swap" rel="stylesheet" /> crossOrigin="true"
/>
<link
href="https://fonts.googleapis.com/css2?family=Satisfy&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&display=swap"
rel="stylesheet"
/>
</Head> </Head>
<main> <main>
@@ -27,9 +36,13 @@ export default function Home() {
<p>🍃your minimalist social media</p> <p>🍃your minimalist social media</p>
<p>tired of the rat race on <font color="grey">insta, tiktok, snap, &quot;meta&quot;...</font>?</p> <p>
tired of the rat race on{' '}
<font color="grey">insta, tiktok, snap, &quot;meta&quot;...</font>?
</p>
<p>start your detox with us and: <p>
start your detox with us and:
<br /> <br />
- live in the present - live in the present
<br /> <br />
@@ -37,13 +50,22 @@ export default function Home() {
<br /> <br />
- cut out the noise - cut out the noise
<br /> <br />
- focus on your goals and personal growth - focus on your personal goals
<br /> <br />
</p> </p>
<p>want an invite? text us @ <font color="grey">949.237.2715</font></p> <p>
wanna test the beta? text us @ <font color="grey">949.237.2715</font>
</p>
<marquee direction="left" width="100%" height="100%" behavior="scroll" scrollamount="12" offset="0%"> <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> <p id="marquee-text">waitlist currently sitting at 2,324 people...</p>
</marquee> </marquee>
@@ -52,20 +74,7 @@ export default function Home() {
<br /> <br />
<Image src="/zuck.jpg" alt="mark zuckerberg" width={60} height={60} /> <Image src="/zuck.jpg" alt="mark zuckerberg" width={60} height={60} />
</p> </p>
</main> </main>
<footer className={styles.footer}>
<a
href="anonymous/top/secret"
target="_blank"
rel="noopener noreferrer"
>
Powered by{' '}
🍃
anonymous
</a>
</footer>
</div> </div>
) );
} }