feat: add warning comment and console message to /threads placeholder page
This commit is contained in:
parent
a3a3cdeca7
commit
c82244a2ad
1 changed files with 9 additions and 1 deletions
|
|
@ -1,4 +1,7 @@
|
|||
---
|
||||
/**
|
||||
* The code for /threads in production is in: https://git.ayo.run/ayo/threads
|
||||
*/
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Footer from '../components/Footer.astro'
|
||||
|
||||
|
|
@ -6,6 +9,10 @@ const page = {
|
|||
title: "Ayo's Threads",
|
||||
description: 'Incubator for thoughts before the become a blog',
|
||||
}
|
||||
|
||||
console.warning(
|
||||
'The code for /threads in production is in: https://git.ayo.run/ayo/threads'
|
||||
)
|
||||
---
|
||||
|
||||
<Layout title={page.title} description={page.description}>
|
||||
|
|
@ -33,7 +40,8 @@ const page = {
|
|||
</p>
|
||||
<p>
|
||||
Anyway, for questions don't hesitate to <a
|
||||
href="https://ayo.ayco.io/about#contact">contact me</a>
|
||||
href="https://ayo.ayco.io/about#contact">contact me</a
|
||||
>
|
||||
</p>
|
||||
</main>
|
||||
<Footer />
|
||||
|
|
|
|||
Loading…
Reference in a new issue