12 lines
230 B
Plaintext
12 lines
230 B
Plaintext
---
|
|
import client from "@/data/pocketbase";
|
|
import SiteLayout from "@/layouts/base";
|
|
const { slug } = Astro.params;
|
|
|
|
const re = await client.collection("recipes").getOne(slug ?? "0");
|
|
|
|
---
|
|
|
|
<SiteLayout>
|
|
{re.name}
|
|
</SiteLayout> |