diff --git a/components/Footer.tsx b/components/Footer.tsx
new file mode 100644
index 0000000..83abf9f
--- /dev/null
+++ b/components/Footer.tsx
@@ -0,0 +1,9 @@
+import config from "../deno.json" with { type: "json" };
+
+export default function Footer() {
+ return (
+
+ );
+}
diff --git a/deno.json b/deno.json
index 17eea29..f602654 100644
--- a/deno.json
+++ b/deno.json
@@ -1,5 +1,8 @@
{
"lock": false,
+ "name": "NRSS",
+ "source": "https://github.com/olaven/NRSS",
+ "author": " Olav Sundfør ",
"tasks": {
"start": "deno run -A --watch=static/,routes/ dev.ts",
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx"
@@ -35,4 +38,4 @@
]
}
}
-}
+}
\ No newline at end of file
diff --git a/routes/index.tsx b/routes/index.tsx
index 073e894..dd14a23 100644
--- a/routes/index.tsx
+++ b/routes/index.tsx
@@ -1,5 +1,6 @@
import { Head } from "$fresh/runtime.ts";
import { Handlers, PageProps } from "$fresh/server.ts";
+import Footer from "../components/Footer.tsx";
import Header from "../components/Header.tsx";
import Search from "../components/Search.tsx";
import SeriesCard from "../components/SeriesCard.tsx";
@@ -68,6 +69,7 @@ export default function Home({ data }: PageProps) {
{" "}
for en oversikt over hvordan det gjøres i populære podcastspillere.
+
>
);