/** @jsx jsx */ import { css, jsx } from "@emotion/react"; import Header1 from "./header_1.svg"; import Header2 from "./header_2.svg"; interface HeaderBarProps { title?: string } const headerImageStyles = css` z-index: -1; top: 0; position: absolute; width: 100%; transition: height 1s; `; function HeaderBar({ title }: HeaderBarProps) { if (!title) { title = "Python Discord Forms"; }; return