diff --git a/src/pages/links.astro b/src/pages/links.astro new file mode 100644 index 0000000..2688b6a --- /dev/null +++ b/src/pages/links.astro @@ -0,0 +1,36 @@ +--- +import { getEntry, render } from "astro:content"; +import Layout from "@/layouts/Layout.astro"; +import Header from "@/components/Header.astro"; +import Breadcrumb from "@/components/Breadcrumb.astro"; +import Main from "@/components/Main.astro"; +import Footer from "@/components/Footer.astro"; +import config from "@/config"; + +const links = await getEntry("pages", "links"); + +if (!links) { + throw new Error( + "Missing content entry: `links.md` or `links.mdx` in `src/content/pages/`" + ); +} + +const { Content } = await render(links); +--- + + +
+ + + +
+ +
+ +