From 423e0e051854b395364e05e9febdd56b8da6c905 Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Mon, 25 Apr 2022 18:15:19 -0300 Subject: [PATCH] Header changes --- src/components/Header/Header.jsx | 44 +++++++++++++++++++++++++++----- 1 file changed, 37 insertions(+), 7 deletions(-) diff --git a/src/components/Header/Header.jsx b/src/components/Header/Header.jsx index 6f871b7..11367d0 100644 --- a/src/components/Header/Header.jsx +++ b/src/components/Header/Header.jsx @@ -1,5 +1,6 @@ import icon from './icon.png' import styled from 'styled-components' +import { Link } from 'wouter' function Header() { @@ -8,12 +9,16 @@ function Header() { height: 15vh; display: flex; + justify-content: space-between; align-items: center; padding: 0px 2vw; border-bottom: 1px solid #eee; + user-select: none; + cursor: pointer; + .logotype { display: flex; align-items: center; @@ -40,16 +45,41 @@ function Header() { } } + .links { + display: flex; + flex-direction: column; + + a { + color: #000; + font-weight: bold; + text-decoration: none; + + &:hover { + text-decoration: underline; + } + } + } + ` - + return ( -
- Page icon -

Telegram to Notion Bot

-
-
- + +
+ Page icon +

Telegram to Notion Bot

+
+ +
+ + About + + + Privacy policy + + + Terms of use +
)