diff options
author | Laisses <laisse@gmail.com> | 2024-08-11 17:50:38 -0300 |
---|---|---|
committer | Laisses <laisse@gmail.com> | 2024-08-11 17:50:38 -0300 |
commit | 93cd1a23839d19f7861a3ab62a8534e9a19e3273 (patch) | |
tree | ed744ded452cb6f846c3f10e95fe71fb579a8fd1 | |
parent | add assets (diff) | |
download | papo.im-93cd1a23839d19f7861a3ab62a8534e9a19e3273.tar.gz papo.im-93cd1a23839d19f7861a3ab62a8534e9a19e3273.tar.xz |
papo landing page
-rw-r--r-- | about.html | 33 | ||||
-rw-r--r-- | blog.html | 33 | ||||
-rw-r--r-- | css/reset.css | 48 | ||||
-rw-r--r-- | css/style.css | 165 | ||||
-rw-r--r-- | index.html | 78 | ||||
-rw-r--r-- | pricing.html | 33 |
6 files changed, 390 insertions, 0 deletions
diff --git a/about.html b/about.html new file mode 100644 index 0000000..d34e512 --- /dev/null +++ b/about.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link rel="shortcut icon" type="image/svg" href="assets/favicon.svg"> + <link rel="stylesheet" href="css/style.css"> + + <title>Papo - Chat With Freedom</title> + </head> + + <body> + <header> + <nav class="navbar"> + <a href="/"> + <img class="nav_logo" src="assets/logo.svg" alt="product logo"/> + </a> + <ul class="nav_links"> + <li><a href="/about.html">About</a></li> + <li><a href="blog.html">Blog</a></li> + <li><a href="/pricing.html">Pricing</a></li> + </ul> + <div> + <button class="login basic_button">Log in</button> + <button class="sign_up basic_button">Register</button> + </div> + </nav> + </header> + <main></main> + <footer></footer> + </body> +</html>
\ No newline at end of file diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..d34e512 --- /dev/null +++ b/blog.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link rel="shortcut icon" type="image/svg" href="assets/favicon.svg"> + <link rel="stylesheet" href="css/style.css"> + + <title>Papo - Chat With Freedom</title> + </head> + + <body> + <header> + <nav class="navbar"> + <a href="/"> + <img class="nav_logo" src="assets/logo.svg" alt="product logo"/> + </a> + <ul class="nav_links"> + <li><a href="/about.html">About</a></li> + <li><a href="blog.html">Blog</a></li> + <li><a href="/pricing.html">Pricing</a></li> + </ul> + <div> + <button class="login basic_button">Log in</button> + <button class="sign_up basic_button">Register</button> + </div> + </nav> + </header> + <main></main> + <footer></footer> + </body> +</html>
\ No newline at end of file diff --git a/css/reset.css b/css/reset.css new file mode 100644 index 0000000..6e3c454 --- /dev/null +++ b/css/reset.css @@ -0,0 +1,48 @@ +/*http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..a9cbbbe --- /dev/null +++ b/css/style.css @@ -0,0 +1,165 @@ +* { + box-sizing: border-box; +} + +html { + --white: #fbfbfb; + --black: #0c0c0c; + --gray: #333333; + --ligth-gray: #F0F1F5; + --green: #1A7320; + --font-size-small: 15px; + --font-size-normal: 16px; + --font-size-large: 17px; + --font-size-big-1: 22px; + --font-size-big-2: 24px; + --font-size-big-3: 32px; + --font-size-big-4: 46px; + --font-size-big-5: 52px; +} + +a { + cursor: pointer; +} + +body { + font-family: "Open Sans", sans-serif; + line-height: 1.6; +} + +header { + border-bottom: 1px solid lightgray; +} + +.icon { + width: 40px; +} + +.navbar { + display: flex; + justify-content: space-between; + align-items: center; + max-width: 1200px; + margin: 0 auto; + padding-top: 0.5rem; + color: var(--black); +} + +.nav_logo { + width: 120px; +} + +.nav_links { + display: flex; + list-style: none; +} + +.nav_links li a { + color: var(--gray); + margin: 0 1rem; + text-decoration: none; + font-size: 1rem +} + +.nav_links li a:visited { + color: var(--gray); +} + +.nav_links li a:hover { + text-decoration: underline; +} + +.basic_button { + height: 2rem; + font-family: "Open Sans", sans-serif; + border-radius: 3px; + cursor: pointer; + padding: 0 10px; + margin: 0 .2rem; +} + +.big_button { + height: 3rem; + width: 15rem; + margin-top: 2rem; + border-radius: 2rem; + font-size: var(--font-size-large); + align-self: center; + text-transform: uppercase; +} + +.login { + color: var(--black); + border: 1px solid var(--green); + background-color: #fbfbfb; +} + +.sign_up, .big_button { + border: none; + background-color: var(--green); + color: var(--white); +} + +.basic_button:hover { + text-decoration: underline; +} + +.banner { + margin: 100px 0; + text-align: center; + color: var(--black); +} + +.banner h1 { + font-size: var(--font-size-big-5); +} + +.banner p { + font-size: var(--font-size-big-2); + margin-top: 8px; + margin-bottom: 1px; +} + +.why_papo { + background-color: var(--ligth-gray); + padding-bottom: 1.2rem; +} + +.why_papo-container { + margin-right: auto; + margin-left: auto; + padding-top: 1rem; + padding-bottom: 3rem; + max-width: 1200px; + display: flex; + flex-direction: column; +} + +.why_papo h2 { + font-size: var(--font-size-big-3); +} + +.why_papo h3 { + font-size: var(--font-size-big-1); + margin-top: .5rem; +} + +.why_papo-cards-container { + display: flex; + flex-direction: row; + flex-wrap: wrap; + padding: 1.3rem 0; +} + +.why_papo-card { + margin: 0 1rem; + width: 30%; + padding: 1.5rem; + background-color: var(--white); + border-radius: 15px; + box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; +} + +footer { + margin-top: 200px; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..cb92835 --- /dev/null +++ b/index.html @@ -0,0 +1,78 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link rel="shortcut icon" type="image/svg" href="assets/favicon.svg"> + <link rel="stylesheet" href="css/style.css"> + + <title>Papo - Chat With Freedom</title> +</head> + +<body> + <header> + <nav class="navbar"> + <a href="/"> + <img class="nav_logo" src="assets/logo.svg" alt="product logo" /> + </a> + <ul class="nav_links"> + <li><a href="/about.html">About</a></li> + <li><a href="blog.html">Blog</a></li> + <li><a href="/pricing.html">Pricing</a></li> + </ul> + <div> + <button class="login basic_button">Log in</button> + <button class="sign_up basic_button">Register</button> + </div> + </nav> + </header> + <main> + <hgroup class="banner"> + <h1>Chat With Utmost Freedom</h1> + <p>Modern chat using open standards</p> + <p>Zero tracking or advertising</p> + <p>Free and open source software</p> + <button class="basic_button big_button">Create Account</button> + </hgroup> + <hgroup class="why_papo"> + <div class="why_papo-container"> + <h2>Why Papo?</h2> + <div class="why_papo-cards-container"> + <div class="why_papo-card"> + <img class="icon" src="assets/shield-light.svg" alt="shild icon" /> + <h3>Privacy first hosted team chat</h3> + <p> + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris varius pulvinar leo id + facilisis. Fusce sodales a odio sed pulvinar. Sed sit amet egestas mauris. + </p> + </div> + <div class="why_papo-card"> + <img class="icon" src="assets/database_light.svg" alt="database with an x icon" /> + <h3>No gratuitous data collection</h3> + <p> + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris varius pulvinar leo id + facilisis. Fusce sodales a odio sed pulvinar. Sed sit amet egestas mauris. + </p> + </div> + <div class="why_papo-card"> + <img class="icon" src="assets/diagram_light.svg" alt="diagram icon" /> + <h3>Build for interoperability</h3> + <p> + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris varius pulvinar leo id + facilisis. Fusce sodales a odio sed pulvinar. Sed sit amet egestas mauris. + </p> + </div> + </div> + <button class="basic_button big_button">Try Papo now</button> + </div> + </hgroup> + <hgroup class="features"> + <h2>Chat hoc</h2> + </hgroup> + </main> + <footer></footer> +</body> + +</html>
\ No newline at end of file diff --git a/pricing.html b/pricing.html new file mode 100644 index 0000000..d34e512 --- /dev/null +++ b/pricing.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link rel="shortcut icon" type="image/svg" href="assets/favicon.svg"> + <link rel="stylesheet" href="css/style.css"> + + <title>Papo - Chat With Freedom</title> + </head> + + <body> + <header> + <nav class="navbar"> + <a href="/"> + <img class="nav_logo" src="assets/logo.svg" alt="product logo"/> + </a> + <ul class="nav_links"> + <li><a href="/about.html">About</a></li> + <li><a href="blog.html">Blog</a></li> + <li><a href="/pricing.html">Pricing</a></li> + </ul> + <div> + <button class="login basic_button">Log in</button> + <button class="sign_up basic_button">Register</button> + </div> + </nav> + </header> + <main></main> + <footer></footer> + </body> +</html>
\ No newline at end of file |