mirror of
https://github.com/artiemis/artie.moe.git
synced 2026-02-14 09:01:55 +00:00
add 404 page (#1)
This commit is contained in:
parent
3251ecfa9d
commit
cd9da6e22f
@ -1,3 +1,11 @@
|
||||
---
|
||||
interface Props {
|
||||
title: string;
|
||||
}
|
||||
|
||||
const { title } = Astro.props;
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
@ -22,7 +30,7 @@
|
||||
/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap" rel="stylesheet" />
|
||||
|
||||
<title>artie</title>
|
||||
<title>{title}</title>
|
||||
</head>
|
||||
<body class="bg-zinc-900 h-screen text-white flex flex-col justify-center items-center">
|
||||
<slot />
|
||||
|
||||
14
src/pages/404.astro
Normal file
14
src/pages/404.astro
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
import Heart from "../components/Heart.astro";
|
||||
import Prompt from "../components/Prompt.astro";
|
||||
import Layout from "../layouts/Layout.astro";
|
||||
---
|
||||
|
||||
<Layout title="404 - artie">
|
||||
<Prompt />
|
||||
<p class="font-bold lg:text-8xl text-7xl text-transparent bg-clip-text from-pink-400 to-purple-600 bg-gradient-to-r">
|
||||
404
|
||||
</p>
|
||||
<a href="/" class="font-medium lg:text-2xl text-xl mt-3 underline text-pink-400 hover:text-pink-600">Home</a>
|
||||
<Heart />
|
||||
</Layout>
|
||||
@ -6,7 +6,7 @@ import Icons from "../components/Icons.astro";
|
||||
import Heart from "../components/Heart.astro";
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<Layout title="artie">
|
||||
<Prompt />
|
||||
<Centerpiece />
|
||||
<Icons />
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user