adding first touches for simple website

This commit is contained in:
Arjun Patel
2021-12-04 21:50:58 -08:00
parent 896cf2ef74
commit 1ec4eee849
4 changed files with 82 additions and 41 deletions
+40 -41
View File
@@ -8,60 +8,59 @@ export default function Home() {
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
<meta charset="UTF-8" />
<title>nirvana</title>
<link rel="icon" href="/icon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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" />
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&display=swap" rel="stylesheet" />
</Head>
<main className={styles.main}>
<h1 className={styles.title}>
Welcome to <a href="https://nextjs.org">Next.js!</a>
</h1>
<main>
<p id="main-title">nirvana</p>
<p className={styles.description}>
Get started by editing{' '}
<code className={styles.code}>pages/index.js</code>
</p>
<p>🍃your minimalist social media</p>
<div className={styles.grid}>
<a href="https://nextjs.org/docs" className={styles.card}>
<h2>Documentation &rarr;</h2>
<p>Find in-depth information about Next.js features and API.</p>
</a>
<p>done with the rat race on <font color="grey">insta, tiktok, snap, "meta"...</font>?</p>
<a href="https://nextjs.org/learn" className={styles.card}>
<h2>Learn &rarr;</h2>
<p>Learn about Next.js in an interactive course with quizzes!</p>
</a>
<a
href="https://github.com/vercel/next.js/tree/master/examples"
className={styles.card}
>
<h2>Examples &rarr;</h2>
<p>Discover and deploy boilerplate example Next.js projects.</p>
</a>
<a
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
className={styles.card}
>
<h2>Deploy &rarr;</h2>
<p>
Instantly deploy your Next.js site to a public URL with Vercel.
<p>start your detox to:
<br />
- live in the present
<br />
- build a more intimate inner circle
<br />
- cut out the noise
<br />
- focus on your goals and personal growth
<br />
</p>
</a>
</div>
</main>
<p>want an invite? text us @ <font color="grey">949.237.2715</font></p>
<p id="side-note">
p.s. we don't sell your data, nor do we hire phd's to drug you...
<br />
<Image src="/zuck.jpg" alt="mark zuckerberg" width={60} height={60} />
</p>
</main>
<footer className={styles.footer}>
<a
href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
href="anonymous/top/secret"
target="_blank"
rel="noopener noreferrer"
>
Powered by{' '}
<span className={styles.logo}>
<Image src="/vercel.svg" alt="Vercel Logo" width={72} height={16} />
</span>
🍃
anonymous
</a>
</footer>
</div>
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

+42
View File
@@ -14,3 +14,45 @@ a {
* {
box-sizing: border-box;
}
/* my personal css */
main {
padding: 4em;
}
#main-title {
font-family: 'Satisfy', cursive;
font-size: 2em;
color: teal;
}
#side-note {
font-family: 'Baloo Bhaijaan 2', cursive;
font-size: 1.5em;
}
p {
font-family: 'Baloo Bhaijaan 2', cursive;
font-size: 2em;
}
/* Mobile :320px. */
@media (max-width: 767px) {
main {
padding: 0em;
}
#main-title {
font-family: 'Satisfy', cursive;
font-size: 2em;
color: teal;
}
#side-note {
font-family: 'Baloo Bhaijaan 2', cursive;
font-size: 1em;
}
p {
font-family: 'Baloo Bhaijaan 2', cursive;
font-size: 1.5em;
}
}