Skip to content

Commit

Permalink
Cleanup notfound
Browse files Browse the repository at this point in the history
  • Loading branch information
rijkvanzanten committed Aug 14, 2023
1 parent c15f72f commit 5769046
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions components/NotFound.vue
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
<script setup lang="ts">
const notFoundText = `The page you requested doesn't exist. Please check to see if it was entered correctly or head back to <a href="/">our homepage</a>.`;
</script>

<template>
<PageSection background="colorful" class="section">
<PageSection background="pristine-white-lines" class="section">
<BaseContainer class="not-found">
<BaseHeading class="heading" tag="h1" content="<em>Page</em> Not Found" size="title" />
<BaseText class="text" content="The page you were looking for cannot be found" />
<BaseHeading class="heading" tag="h1" content="<em>Page</em> Not Found" size="large" />
<BaseText class="text" :content="notFoundText" />
</BaseContainer>
</PageSection>
</template>

<style lang="scss" scoped>
.heading {
margin-block-end: var(--space-4);
margin-block-end: var(--space-2);
@media (width > 50rem) {
margin-block-end: var(--space-8);
margin-block-end: var(--space-4);
}
}
</style>

0 comments on commit 5769046

Please sign in to comment.