Skip to content

Commit

Permalink
fix: fix 404 NotFound page
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo committed Dec 1, 2023
1 parent 0b8451c commit 6ecf836
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/.vitepress/theme/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { page, frontmatter, site } = useData()
</script>

<template>
<div class="antialiased dark:bg-neutral-900">
<div class="antialiased dark:bg-neutral-900 min-h-screen">
<div class="max-w-3xl mx-auto px-4 sm:px-6 xl:max-w-5xl xl:px-0">
<nav class="flex justify-between items-center py-10 font-bold">
<a class="text-xl" href="/" :aria-label="site.title">
Expand Down
2 changes: 1 addition & 1 deletion src/.vitepress/theme/NotFound.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<template>
<h1 class="text-3xl font-bold">404 Page Not Found</h1>
<h1 class="text-3xl font-bold dark:text-white">404 Page Not Found</h1>
</template>

0 comments on commit 6ecf836

Please sign in to comment.