diff --git a/src/components/Footer/Footer.css b/src/components/Footer/Footer.css index 5c4b9c1a..5d5bb4e2 100644 --- a/src/components/Footer/Footer.css +++ b/src/components/Footer/Footer.css @@ -21,7 +21,7 @@ width: 100%; @media (--viewportMedium) { - max-width: 1120px; + max-width: 1056px; margin: 0 auto; } } @@ -59,7 +59,7 @@ /* Desktop: logo and organization stuff */ .organization { - flex-basis: 216px; + flex-basis: 220px; display: none; margin-right: 24px; @@ -108,7 +108,7 @@ /* Desktop and Mobile: links to more information */ .infoLinks { order: 2; - flex-basis: 172px; + flex-basis: 165px; @media (--viewportMedium) { padding-top: 2px; @@ -151,7 +151,7 @@ /* Desktop and Mobile: searches - first column */ .searches { order: 3; - flex-basis: 172px; + flex-basis: 165px; @media (--viewportMedium) { padding-top: 2px; } @@ -162,7 +162,7 @@ .searchesExtra { order: 4; display: none; - flex-basis: 172px; + flex-basis: 165px; @media (min-width: 550px) { display: block; @@ -182,7 +182,7 @@ .extraLinks { order: 5; display: none; - flex-basis: 172px; + flex-basis: 109px; @media (--viewportMedium) { display: flex; diff --git a/src/components/LayoutSingleColumn/LayoutSingleColumn.css b/src/components/LayoutSingleColumn/LayoutSingleColumn.css index 1fffb6d2..e012129e 100644 --- a/src/components/LayoutSingleColumn/LayoutSingleColumn.css +++ b/src/components/LayoutSingleColumn/LayoutSingleColumn.css @@ -13,5 +13,7 @@ /* Expand to the full remaining width of the viewport */ display: flex; flex-direction: column; - width: 100%; + width: calc(100% - 72px); + max-width: 1056px; + margin: 88px auto; } diff --git a/src/containers/AboutPage/AboutPage.css b/src/containers/AboutPage/AboutPage.css new file mode 100644 index 00000000..83faf00f --- /dev/null +++ b/src/containers/AboutPage/AboutPage.css @@ -0,0 +1,32 @@ +@import '../../marketplace.css'; + +.root { +} + +.pageTitle { + text-align: center; + +} + +.coverImage { + width: 100%; + height: 528px; + border-radius: 4px; + object-fit: cover; + margin: 32px 0 40px; +} + +.contentWrapper { + display: flex; +} + +.contentSide { + width: 193px; + margin-right: 103px; + margin-top: 8px; +} + +.contentMain { + max-width: 650px; + width: 90%; +} \ No newline at end of file diff --git a/src/containers/AboutPage/AboutPage.js b/src/containers/AboutPage/AboutPage.js new file mode 100644 index 00000000..46093adc --- /dev/null +++ b/src/containers/AboutPage/AboutPage.js @@ -0,0 +1,71 @@ +import React from 'react'; +import { StaticPage, TopbarContainer } from '../../containers'; +import { + LayoutSingleColumn, + LayoutWrapperTopbar, + LayoutWrapperMain, + LayoutWrapperFooter, + Footer, + ExternalLink +} from '../../components'; + +import css from './AboutPage.css'; +import image from './about-us.jpg'; + +const AboutPage = () => { + return ( + + + + + + + + +

It’s about Saunatime.

+ My first ice cream. + +
+ +
+

"We built Saunatime because we didn't have a sauna in our apartment building."

+
+ +
+

Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cras justo odio, dapibus ac facilisis in, egestas eget quam.

+ +

Tortor mauris condimentum

+ +

Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cras justo odio, dapibus ac facilisis in, egestas eget quam.

+ +

Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Get in touch

+

We are happy to help you in anything you have in your mind.?Best way to reach us is by emailing us at hello@saunatime.io.

+

You can also checkout our Facebook and Twitter.

+
+
+ +
+ + +