Skip to content

Commit

Permalink
update to 404
Browse files Browse the repository at this point in the history
update to 404
  • Loading branch information
ehinrichs committed May 29, 2024
1 parent e1cce61 commit bdc2501
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions src/pages/404.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
/** @jsx jsx */
import * as React from "react"
import type { PageProps } from "gatsby"
import Layout from "@lekoarts/gatsby-theme-minimal-blog/src/components/layout"
import "/src/components/billboard/styles.css"
import { Grid, Box, Container, jsx, get , Button} from "theme-ui"

const NotFound = (_props: PageProps) => (
<Layout>
<h1>404 - Page Not Found</h1>
<p>Unfortunately we couldn't find what you were looking for :(</p>
<Box sx={{
background: t => `linear-gradient(to bottom, ${t.colors.primary}, ${t.colors.divide})`,
marginLeft: '-50vw',
marginRight: '-50vw',
mb: -25,
pb: 200,
pt: 150,
mt: -130,
}}>
<div sx={{ fontSize: [8], fontWeight: `bold`, color: `heading` }}>
<center>Page not found</center>
</div>

<div sx={{ fontSize: [4], color: `subheading` }}>
<center>The requested page could not be found.</center>
</div>
</Box>
</Layout>
)

export default NotFound
export default NotFound

0 comments on commit bdc2501

Please sign in to comment.