the prompt now works properly

This commit is contained in:
2025-02-05 17:49:00 -05:00
parent bb7e2a4ae3
commit 0303bb733a
7 changed files with 46 additions and 49 deletions

View File

@ -2,11 +2,6 @@
import Metas from "../components/metas.astro"
import Header from "../components/header.astro"
import Footer from "../components/footer.astro"
interface Props {
title: string,
}
const {title} = Astro.props
---
<!doctype html>
@ -14,10 +9,10 @@ const {title} = Astro.props
<head>
<Metas/>
<link rel="icon" type="image/png" href="/logo.png"/>
<title>{`rhpidfyre.io | ${title}`}</title>
<title>rhpidfyre.io</title>
</head>
<body>
<Header title={title}/>
<Header/>
<slot/>
<Footer/>
</body>