add missing pages

This commit is contained in:
elisejakob
2024-05-22 23:30:07 +02:00
parent ca956507fd
commit 259307c550
4 changed files with 53 additions and 4 deletions

19
web/src/app/om/page.tsx Normal file
View File

@ -0,0 +1,19 @@
import { graphql } from "@/gql";
//import { NewsFragment } from "@/gql/graphql";
import { getClient } from "@/app/client";
import Link from "next/link";
import { PageHeader } from "@/components/general/PageHeader";
import { IconListBlock } from "@/components/blocks/IconListBlock";
export default async function Page() {
return (
<main className="site-main" id="main">
<PageHeader heading="Om oss" />
<p>Generelt om oss, CN og DNS</p>
<p>Inngang til kontakt, åpningstider og kart(?)</p>
<p>Historie og tradisjoner</p>
<p>Inngang til HMgrisen.no</p>
<p>Inngang til foreningene (kanskje under info om DNS over?)</p>
</main>
);
}