update base, add /about, footer

This commit is contained in:
41666 2023-06-10 14:41:33 -04:00
parent 434f29b967
commit 251931c838
11 changed files with 1721 additions and 1437 deletions

View file

@ -1 +1,29 @@
export const PS2LiveLogo = () => <div></div>;
import { Link } from "@remix-run/react";
import * as styles from "./footer.css";
export const Footer = ({ isMainPage }: { isMainPage?: boolean }) => (
<footer>
<div className={styles.root}>
<div className={styles.background}></div>
<div className={styles.logo}>
PS2
<div className={styles.logoDot}></div>
<span className={styles.logoLive}>LIVE</span>
<div className={styles.lowerLogo}>
<div>
{isMainPage ? (
<Link className={styles.link} to="/about">
more stuff »
</Link>
) : (
<Link className={styles.link} to="/">
less stuff »
</Link>
)}
</div>
<div>&copy; {new Date().getFullYear()}</div>
</div>
</div>
</div>
</footer>
);