diff --git a/pages/home/index.js b/pages/home/index.js new file mode 100644 index 0000000..042be7b --- /dev/null +++ b/pages/home/index.js @@ -0,0 +1,68 @@ +import Head from 'next/head' +import Image from 'next/image' +import styles from '../../styles/Home.module.css' + +export default function Home() { + return ( +
+ + Create Next App + + + + nirvana + + + + + + + + + + + + +
+

nirvana

+ +

🍃your minimalist social media

+ +

done with the rat race on insta, tiktok, snap, "meta"...?

+ +

start your detox to: +
+ - live in the present +
+ - build a more intimate inner circle +
+ - cut out the noise +
+ - focus on your goals and personal growth +
+

+ +

want an invite? text us @ 949.237.2715

+ +

+ p.s. we don't sell your data, nor do we hire phd's to drug you... +
+ mark zuckerberg +

+ +
+ + +
+ ) +} diff --git a/public/MarkZuckerberg.jpg b/public/MarkZuckerberg.jpg new file mode 100644 index 0000000..a2ed465 Binary files /dev/null and b/public/MarkZuckerberg.jpg differ diff --git a/public/icon.png b/public/icon.png new file mode 100644 index 0000000..72fdd38 Binary files /dev/null and b/public/icon.png differ diff --git a/public/zuck.jpg b/public/zuck.jpg new file mode 100644 index 0000000..e0fb6c0 Binary files /dev/null and b/public/zuck.jpg differ diff --git a/public/zuckerberg.png b/public/zuckerberg.png new file mode 100644 index 0000000..fdddf4a Binary files /dev/null and b/public/zuckerberg.png differ diff --git a/styles/globals.css b/styles/globals.css index e5e2dcc..8761e36 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -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; + } + } \ No newline at end of file