diff --git a/src/app/main/not-logged/not-logged.component.html b/src/app/main/not-logged/not-logged.component.html index e3ff6a2..29ac68d 100644 --- a/src/app/main/not-logged/not-logged.component.html +++ b/src/app/main/not-logged/not-logged.component.html @@ -19,30 +19,94 @@

about

+ +
+ +

what is this?

+ Connect with similar-minded people.
+ Start doing what you really care about. Together. Fulltime.
+ +
+
-

vision

+ +

how does it work?

+

Tell what you care about

+
+
+

Tags represent what you care about. Add them to your profile. Tell how relevant they are to you. You can also tell why you care.

+
+
+ profile +
+
-

It should be incredibly easy to start doing what you really care - about. Fulltime.

+

Find similar-minded people

+
+
+

Tags help you to find similar-minded people. And they help people to find you.

+
+
+ search people +
+
- +

Find people around

+
+
+

Map shows where people are.

+
+
+ map +
+
-

Currently we develop this platform to do exactly that.

+

Make the connection

+
+
+

If you find somebody, don't hesitate to start a conversation. Discuss your ideas, meet and start collaborating.

+
+
+ messages +
+
-

One day we'll have a network of places where people can meet and - collaborate. We'll learn from mistakes and discover best practices.

-

We'll support each other. We will empower ourselves to leave - corporations, institutions and other meaningless systems we can't - escape now.

+

Future

+
+
+

Soon it will be possible to share ideas, identify challenges and start or join projects.

+

We also imagine creating community places where people can meet and collaborate. That may happen later in the future.

+
+
+ +
-

development

+ +

development

REST API and @@ -51,7 +115,8 @@

development

-

contact

+ +

contact

michal dot salajka at protonmail dot com
diff --git a/src/app/main/not-logged/not-logged.component.scss b/src/app/main/not-logged/not-logged.component.scss index b905111..d352c5c 100644 --- a/src/app/main/not-logged/not-logged.component.scss +++ b/src/app/main/not-logged/not-logged.component.scss @@ -118,3 +118,60 @@ a { background-color: $dark-color; } } + +.nav-back { + font-size: smaller; + color: gray; + text-align: right; + float: right; +} + + +// display screenshots and description next to each other +// every second section has reverse order, to show image on the left +// there is a space of 1em between image and description +@media (min-width: 513px) { + .works-section { + display: flex; + justify-content: space-between; + + > div { + flex: 1; + + > p:nth-of-type(1) { + padding-top: 0; + } + } + + &:nth-of-type(even) { + flex-direction: row-reverse; + + p { + padding-left: 1em; + } + } + + &:nth-of-type(odd) { + p { + padding-right: 1em; + } + } + } +} + +// screenshots and description for mobile display +@media (max-width: 512px) { + .works-section { + display: block; + } +} + +.works-section { + text-align: justify; +} + +.screenshot { + width: 100%; + border: 2px solid $light-color; +} +// end of displaying screenshots and info diff --git a/src/static/img/screenshots/map.png b/src/static/img/screenshots/map.png new file mode 100644 index 0000000..8ff1b4d Binary files /dev/null and b/src/static/img/screenshots/map.png differ diff --git a/src/static/img/screenshots/messages.png b/src/static/img/screenshots/messages.png new file mode 100644 index 0000000..c9451a6 Binary files /dev/null and b/src/static/img/screenshots/messages.png differ diff --git a/src/static/img/screenshots/people.png b/src/static/img/screenshots/people.png new file mode 100644 index 0000000..fa1d59e Binary files /dev/null and b/src/static/img/screenshots/people.png differ diff --git a/src/static/img/screenshots/profile.png b/src/static/img/screenshots/profile.png new file mode 100644 index 0000000..54669c5 Binary files /dev/null and b/src/static/img/screenshots/profile.png differ