From 17d494b64be99c7aa3ffcc1f2c827575e1578e5e Mon Sep 17 00:00:00 2001 From: LughWalle Date: Thu, 21 Oct 2021 23:51:15 -0300 Subject: [PATCH 1/9] created files index.html and style.css --- index.html | 0 style.css | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..e69de29 diff --git a/style.css b/style.css new file mode 100644 index 0000000..e69de29 From f1074de497c9f031c098c0a08d612a29173c773b Mon Sep 17 00:00:00 2001 From: LughWalle Date: Thu, 21 Oct 2021 23:54:26 -0300 Subject: [PATCH 2/9] feat: landing page - structure basic html --- index.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/index.html b/index.html index e69de29..47fd40f 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,13 @@ + + + + + + + + Document + + + + + \ No newline at end of file From 65ddffa75466b5498384b6d424c5af6cce849e1b Mon Sep 17 00:00:00 2001 From: LughWalle Date: Mon, 25 Oct 2021 09:48:53 -0300 Subject: [PATCH 3/9] dev: create header and hero section structure basic --- index.html | 43 +++++++++++++++++++++++++++++++++++++++++-- style.css | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 47fd40f..9f0af5e 100644 --- a/index.html +++ b/index.html @@ -4,10 +4,49 @@ - Document + - +
+ + +
+
+
One
+
Two
+
Three
+
Four
+
Five
+
+
+
+
+

+ Easily create or join a local nanny share with Hapu +

+

+ Hapu is Airbnb for nanny share. Share your home, nanny and costs and create new flexible, affordable solutions in childcare. +

+ +
+ conection example +
+
\ No newline at end of file diff --git a/style.css b/style.css index e69de29..d68b07d 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,41 @@ +* { + box-sizing: border-box; + font-family: Inter, sans-serif; + margin: 0; + padding: 0; +} + +header { + display: flex; + font-size: 1rem; + font-weight: 500; + justify-content: space-between; + left: 0; + margin: auto; + max-width: 1440px; + right: 0; +} + +.nav-header { + display: flex; + align-items: center; + margin: 0 20px; + gap: 40px; +} + +.logo { + width: 48px; +} + +.signin { + display:flex; + align-items: center; +} + +.wrapper { + border: 2px solid red; +} + +.wrapper div { + border: 2px solid blue; +} From 7a0f84219e5ba55eb57e3c58d61d38ff92b9ec3b Mon Sep 17 00:00:00 2001 From: LughWalle Date: Fri, 29 Oct 2021 22:22:49 -0300 Subject: [PATCH 4/9] create html complete --- index.html | 222 ++++++++++++++++++++++++++++++----- resources/facebook_logo.svg | 4 + resources/instagram_logo.svg | 4 + resources/twitter_logo.svg | 4 + style.css | 23 +++- 5 files changed, 220 insertions(+), 37 deletions(-) create mode 100644 resources/facebook_logo.svg create mode 100644 resources/instagram_logo.svg create mode 100644 resources/twitter_logo.svg diff --git a/index.html b/index.html index 9f0af5e..b9fc928 100644 --- a/index.html +++ b/index.html @@ -4,49 +4,209 @@ - Document - + HAPU + + + +
- - -
-
-
One
-
Two
-
Three
-
Four
-
Five
-
-
-
+ green logo hapu + + + Sign In + + + +
-

- Easily create or join a local nanny share with Hapu -

+

Easily create or join a local nanny share with Hapu

- Hapu is Airbnb for nanny share. Share your home, nanny and costs and create new flexible, affordable solutions in childcare. + Hapu is Airbnb for nanny share. Share your home, nanny and costs and + create new flexible, affordable solutions in childcare.

- conection example + banner modal +
+ + + + + + + + + +
+ Sarah profile +
+ Sarah’s day care available now in North Sydney +

Wednesday, Thursday, Friday - 7:30 - 5:30

+ + + + + + + +
+ + + +
+ +
+ shared payments +
+

Shared payments made simple

+

+ Sometimes it’s hard enough just sharing a restaurant bill. Try + sharing that bill week in, week out and you might encounter more + than a few snares. But not with Hapu. Simply set your rates and our + automated payment system takes care of the rest. You need never talk + money or who owes what. +

+ Read how Bridget’s share (without Hapu) ended over $15 +
+
+ +
+ +
+
+

A framework built for the long term

+

+ Childcare is for the long term. And you need a framework you can + count on that gives your share long term viability and success. + That’s why we’ve defined Hapu around our three tribal principles; + clearly defined process, transparency over money and equality of + participation. +

+ Read how Hapu’s tribal background defines our app +
+ billing history +
+ +
+ +
+ diary icon +
+

Coming soon: Nanny Share Daily Diary!

+

+ With the Hapu daily diary your nanny will be able to update you and + your sharers with photos and commentary of the day. You and sharers + will receive notifications and you’ll be able to login to view the + daily adventures fo your little ones. We can’t wait! +

+
+
+ + + + + + + + \ No newline at end of file diff --git a/resources/facebook_logo.svg b/resources/facebook_logo.svg new file mode 100644 index 0000000..d9793b4 --- /dev/null +++ b/resources/facebook_logo.svg @@ -0,0 +1,4 @@ + + + + diff --git a/resources/instagram_logo.svg b/resources/instagram_logo.svg new file mode 100644 index 0000000..8d56ffc --- /dev/null +++ b/resources/instagram_logo.svg @@ -0,0 +1,4 @@ + + + + diff --git a/resources/twitter_logo.svg b/resources/twitter_logo.svg new file mode 100644 index 0000000..c0d3d1f --- /dev/null +++ b/resources/twitter_logo.svg @@ -0,0 +1,4 @@ + + + + diff --git a/style.css b/style.css index d68b07d..fe76331 100644 --- a/style.css +++ b/style.css @@ -5,7 +5,22 @@ padding: 0; } +body { + background-color: #f2f2f2; +} + header { + background-blend-mode: overlay; + background-position: center; + background-size: cover; + background: url("resources/banner_image.png"), + linear-gradient( + 314.72deg, + #c86dd7 -1.5%, + #7e49c3 39.43%, + #5912ac 86.02% + ); + /* height: 616px; */ display: flex; font-size: 1rem; font-weight: 500; @@ -32,10 +47,6 @@ header { align-items: center; } -.wrapper { - border: 2px solid red; -} - -.wrapper div { - border: 2px solid blue; +.hero { + } From 4ef4d951c7d9174afec683029589d09625b67af5 Mon Sep 17 00:00:00 2001 From: LughWalle Date: Tue, 2 Nov 2021 02:34:52 -0300 Subject: [PATCH 5/9] dev: header and hero CSS complete --- index.html | 44 +++++++++++++++---------- style.css | 94 +++++++++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 113 insertions(+), 25 deletions(-) diff --git a/index.html b/index.html index b9fc928..1dad104 100644 --- a/index.html +++ b/index.html @@ -12,14 +12,24 @@
- green logo hapu - - - Sign In + + + + + @@ -30,9 +40,9 @@

Easily create or join a local nanny share with Hapu

Hapu is Airbnb for nanny share. Share your home, nanny and costs and create new flexible, affordable solutions in childcare.

- @@ -48,19 +58,19 @@

Easily create or join a local nanny share with Hapu

-
+ - diff --git a/news.css b/news.css new file mode 100644 index 0000000..0fcede6 --- /dev/null +++ b/news.css @@ -0,0 +1,30 @@ +.news { + align-items: center; + background-color: #fff; + border: 1px solid #dfdfdf; + display: flex; + gap: 32px; + height: 114px; + justify-content: center; +} + +.news img { + width: 3.9vw; +} + +.info-news { + align-items: center; + display: flex; + font-size: 1rem; + font-weight: 500; + line-height: 1.5rem; +} + +.info-news a { + color: #5E20A4; +} + +.info-news p { + font-family: Arial, Helvetica, sans-serif; + color: #000; +} \ No newline at end of file From 8639712dff33148982a98b7218517fe209daf857 Mon Sep 17 00:00:00 2001 From: LughWalle Date: Tue, 2 Nov 2021 05:06:39 -0300 Subject: [PATCH 7/9] dev: info sections CSS complete --- hero.css | 4 +- index.html | 43 +++++++------- infos.css | 169 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 194 insertions(+), 22 deletions(-) create mode 100644 infos.css diff --git a/hero.css b/hero.css index 589c64f..b6c1738 100644 --- a/hero.css +++ b/hero.css @@ -74,6 +74,8 @@ nav { } .nav-sign button { + border: 1px; + border-radius: 5%; color: #fff; padding: 12px 21px; background: #00C88C; @@ -91,7 +93,7 @@ nav { width: 80vw; } -article { +.hero article { width: 38vw; } .hero article h1 { diff --git a/index.html b/index.html index e7848e9..9ad94b7 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,7 @@ HAPU + @@ -71,8 +72,8 @@

Easily create or join a local nanny share with Hapu

- +
diff --git a/infos.css b/infos.css new file mode 100644 index 0000000..059c427 --- /dev/null +++ b/infos.css @@ -0,0 +1,169 @@ +hr { + border-top: 2px solid #dfdfdf; + margin: auto; + width: 57vw; + left: 50%; +} + +a { + color: #5E20A4; + font-size: 1rem; +} + +.section-info-1 { + display: flex; + flex-direction: row; + gap: 4vw; + margin: 120px 9vw 120px 16vw; +} + +.section-info-1 article{ + gap: 40px; + display: flex; + flex-direction: column; +} +.section-info-1 img { + width: 39vw; +} + +.section-info-1 h1 { + font-weight: 500; + font-size: 1.75rem; + line-height: 2rem; +} + + +.section-info-2 { + margin: 64px auto; + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + gap: 70px; +} + +.section-info-2 article { + width: 60vw; + gap: 20px; +} + +.section-info-2 h1 { + font-weight: 500; + font-size: 1.375rem; + line-height: 2rem; + margin-bottom: 1vw; +} + +.section-info-2 p { + font-size: 1.125rem; + line-height: 1.75rem; +} + +input { + border-radius: 4px; + border: 1px solid #dfdfdf; + height: 44px; + padding: 0 20px; +} + +.btn-send { + color: #fff; + padding: 12px 21px; + background: #00C88C; + border-radius: 5%; + border: 0; +} + +.section-info-3 { + display: flex; + flex-direction: row; + gap: 3vw; + margin: 96px 16vw; +} + +.section-info-3 img { + width: 34vw; +} + +.section-info-3 div { + display: flex; + flex-direction: column; + gap: 40px; +} + +.section-info-3 h1 { + font-weight: 500; + font-size: 1.75rem; + line-height: 2rem; +} + +.section-info-3 p, a { + font-size: 1rem; + font-weight: 500; + line-height: 1.75rem; +} +.section-info-3 a { + line-height: 1.5rem; +} + +.section-info-4 { + display: flex; + flex-direction: column; + align-items: center; + margin: 96px 23vw; + gap: 64px; + text-align: center; +} + +.section-info-4 div { + display: flex; + flex-direction: column; + gap: 40px; +} + +.section-info-4 h1 { + font-size: 1.75rem; + font-weight: 500; + line-height: 2rem; +} +.section-info-4 p, a { + font-size: 1rem; + font-weight: 500; + line-height: 1.75rem; +} +.section-info-4 a { + line-height: 1.5rem; +} + +.section-info-4 img { + width: 68.3vw; +} + +.section-info-5 { + display: flex; + flex-direction: column; + margin: 96px 23vw; + align-items: center; + text-align: center; +} + +.section-info-5 div { + display: flex; + flex-direction: column; + gap: 40px; +} + +.section-info-5 h1 { + font-size: 1.75rem; + font-weight: 500; + line-height: 2rem; + margin-top: 40px; +} + +.section-info-5 P { + font-size: 1rem; + line-height: 1.5rem; +} +.section-info-5 img { + width: 216px; +} \ No newline at end of file From 4c5492e03bec9879f81a6ec43e0111add880047e Mon Sep 17 00:00:00 2001 From: LughWalle Date: Tue, 2 Nov 2021 05:47:52 -0300 Subject: [PATCH 8/9] dev: area footer CSS complete --- footer.css | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 35 ++++++++++---------- 2 files changed, 114 insertions(+), 17 deletions(-) create mode 100644 footer.css diff --git a/footer.css b/footer.css new file mode 100644 index 0000000..8e7548c --- /dev/null +++ b/footer.css @@ -0,0 +1,96 @@ +.main-footer { + display: flex; + flex-direction: column; + align-items: center; + padding: 80px 0 24px; +} + +.main-footer h1 { + font-size: 1.75rem; + font-weight: 500; + line-height: 2rem; + margin-bottom: 16px; +} + +.main-footer > p { + font-size: 1.125rem; + line-height: 1.5rem; +} + +.btn-create-nanny { + color: #fff; + padding: 12px 21px; + background: #5E20A4; + border-radius: 5%; + border: 0; + align-items: center; + display: flex; + gap: 21px; + margin: 32px 0 24px; + width: 304px; +} + +.btn-create-nanny div { + align-items: flex-start; + display: flex; + flex-direction: column; +} + +.title-btn { + font-size: 1rem; + font-weight: 1.75rem; +} + +.desc-btn { + font-size: 0.75rem; + font-weight: 1rem; +} + +.nanny-shares { + font-size: 1rem; + margin-bottom: 66px; + color: #5E20A4; +} + +.nav-footer { + align-items: center; + display: flex; + justify-content: space-between; + margin: 58px 128px; + max-width: 1440px; +} + +.logo-hapu { + width: 14vw; +} + +.logo-gray { + width: 4.4vw; +} + +.nav-menu-footer { + display: flex; + gap: 30px; + justify-content: center; +} + +.area-nav { + display: flex; + gap: 30px; + justify-content: center; +} + +.nav-footer .link-nav { + color: #3d3d3d; + font-size: 0.9rem; + line-height: 1.25rem; + text-decoration: none; +} + +.copyrigth { + font-size: 0.75rem; + line-height: 1rem; + opacity: 0.6; + padding: 32px 0; + text-align: center; + } diff --git a/index.html b/index.html index 9ad94b7..5756811 100644 --- a/index.html +++ b/index.html @@ -8,6 +8,7 @@ + @@ -176,32 +177,32 @@

Coming soon: Nanny Share Daily Diary!

- + From 692c58b65a58c5179c743fecc0a50b02169640df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucival=20dos=20Santos=20Fran=C3=A7a=20Filho?= <48294395+LughWalle@users.noreply.github.com> Date: Thu, 22 Sep 2022 15:42:15 -0300 Subject: [PATCH 9/9] Create CNAME --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..88ae3a2 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +milhoverde.ml \ No newline at end of file