21 lines
462 B
Plaintext
21 lines
462 B
Plaintext
---
|
|
import BaseHead from '../components/BaseHead.astro';
|
|
import Header from '../components/Header.astro';
|
|
import Footer from '../components/Footer.astro';
|
|
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
|
|
</head>
|
|
<body>
|
|
<Header />
|
|
<main>
|
|
<h1>from webhook</h1>
|
|
<p>foo, bar, baz, qux, quux</p>
|
|
</main>
|
|
<Footer />
|
|
</body>
|
|
</html> |