
This builds and works and cleans up a few things. We're also migrating to material ui - but not very deeply yet. No clue what we're going to do with the talks and blog posts yet. The real question is - do I care about those at this point? I think I'd like to use this as a playground a bit, make some of the CSS style sections into components. Maybe make all of this a bit more dynamic or something. But for now, this gets me a something. Change-Id: I455bb3fbf9d7473e8f7bcf639b2254ffe0917a32
26 lines
640 B
JavaScript
26 lines
640 B
JavaScript
import CssBaseline from '@mui/material/CssBaseline'
|
|
import Container from '@mui/material/Container'
|
|
import Box from '@mui/material/Box'
|
|
import styles from './page.module.css'
|
|
|
|
// Let's fix the styles later
|
|
import './resume.html/mordred.css'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<CssBaseline />
|
|
|
|
<Container maxWidth="xl">
|
|
<div className="jumbotron">
|
|
<h1>Monty Taylor</h1>
|
|
</div>
|
|
<Box>Things you may or may not care or not care about.</Box>
|
|
<Box>
|
|
It should be obvious, but I may be reworking what is going on here.
|
|
</Box>
|
|
</Container>
|
|
</>
|
|
)
|
|
}
|