-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
// TODO: Move this to a lib | ||
import { CardThemed } from '@genshin-optimizer/common/ui' | ||
import { CardContent, Typography } from '@mui/material' | ||
|
||
export default function PageHome() { | ||
return <>home page</> | ||
return ( | ||
<CardThemed sx={{ my: 1 }}> | ||
<CardContent> | ||
<Typography variant="h5">I know what this looks like...</Typography> | ||
<Typography> | ||
This <strong>is</strong> my rendition of Zenless Optimizer. You have | ||
to understand, this is the result of asking, | ||
</Typography> | ||
<Typography variant="caption"> | ||
"What is the most Optimizer I can, if I was cutting corners like it's | ||
crunch time at a circle factory?" — frzyc, probably | ||
</Typography> | ||
<Typography> | ||
I know a lot of stuff isn't implemented, and the stuff that are, are | ||
super ugly. This is only like 10 hours of coding, cut me some slack. | ||
</Typography> | ||
<Typography sx={{ my: 1 }}>Have an optimial day,</Typography> | ||
<Typography> | ||
<strong>frzyc</strong> | ||
</Typography> | ||
</CardContent> | ||
</CardThemed> | ||
) | ||
} |