feat: add new fancy index + add org slugs

This commit is contained in:
swve 2022-09-25 10:57:54 +02:00
parent 1b3df392b7
commit 86fdd89b23
11 changed files with 376 additions and 21 deletions

View file

@ -1,7 +1,10 @@
import React from "react";
import styled from "styled-components";
import { HeaderProfileBox } from "../../auth/HeaderProfileBox";
import learnhouseIcon from 'public/learnhouse_icon.png'
import learnhouseLogo from 'public/learnhouse_logo.png'
import Link from "next/link";
import Image from "next/image";
export const Menu = () => {
return (
@ -9,10 +12,10 @@ export const Menu = () => {
<LogoArea>
<Logo>
<img style={{ width: "30px", opacity: "0.9", margin: "10px", paddingRight: "4px" }} src="./learnhouse_icon.png" alt="" />
<Image width={25} height={25} src={learnhouseIcon} alt="" />
<Link href={"/"}>
<a>
<img src="./learnhouse_logo.png" alt="" />
<Image width={108} height={28} src={learnhouseLogo} alt="" />
</a>
</Link>
</Logo>
@ -54,10 +57,10 @@ const Logo = styled.div`
padding-left: 20px;
a{
margin: 0;
padding-left: 10px;
padding-top: 2px;
}
img {
width: 100px;
}
`;
const SearchArea = styled.div`

View file

@ -43,7 +43,7 @@ const Footer = styled.footer`
}
`;
const PreAlphaLabel = styled.div`
export const PreAlphaLabel = styled.div`
position: fixed;
bottom: 0;
right: 0;