mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-18 20:09:25 +00:00
26 lines
495 B
TypeScript
26 lines
495 B
TypeScript
import React from "react";
|
|
import { Menu } from "./elements/menu";
|
|
import Link from 'next/link'
|
|
import styled from "styled-components";
|
|
|
|
|
|
export const Header = () => {
|
|
return (
|
|
<div>
|
|
<Menu></Menu>
|
|
<PreAlphaLabel>🚧 Pre-Alpha</PreAlphaLabel>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const PreAlphaLabel = styled.div`
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
padding: 9px;
|
|
background-color: #080501;
|
|
color: white;
|
|
font-size: 19px;
|
|
font-weight: bold;
|
|
border-radius: 5px 0 0 0px;
|
|
`;
|