update base, add /about, footer
This commit is contained in:
parent
434f29b967
commit
251931c838
11 changed files with 1721 additions and 1437 deletions
|
@ -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>© {new Date().getFullYear()}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue