add missing pages
This commit is contained in:
23
web/src/app/medlem/page.tsx
Normal file
23
web/src/app/medlem/page.tsx
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
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="Bli medlem" />
|
||||||
|
<p>Som medlem kan du... får du... glede og samvær</p>
|
||||||
|
<p>
|
||||||
|
Inngang til{" "}
|
||||||
|
<a href="https://galtinn.neuf.no/" target="_blank">
|
||||||
|
Galtinn
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p>Inngang til foreningene</p>
|
||||||
|
<IconListBlock />
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
19
web/src/app/om/page.tsx
Normal file
19
web/src/app/om/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
@ -4,4 +4,5 @@
|
|||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-size: var(--font-size-h1);
|
font-size: var(--font-size-h1);
|
||||||
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
@ -75,7 +75,7 @@ export const Header = () => {
|
|||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<Link href="/" data-active={pathname === "/medlem"}>
|
<Link href="/medlem" data-active={pathname === "/medlem"}>
|
||||||
Bli medlem
|
Bli medlem
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
@ -109,7 +109,7 @@ export const Header = () => {
|
|||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
<li className={styles.menuItemLarge}>
|
<li className={styles.menuItemLarge}>
|
||||||
<Link href="/" data-active={pathname === "/medlem"}>
|
<Link href="/medlem" data-active={pathname === "/medlem"}>
|
||||||
Bli medlem
|
Bli medlem
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
@ -119,7 +119,7 @@ export const Header = () => {
|
|||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<Link href="/" data-active={pathname === "/om"}>
|
<Link href="/om" data-active={pathname === "/om"}>
|
||||||
Om oss
|
Om oss
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
@ -140,12 +140,18 @@ export const Header = () => {
|
|||||||
</label>
|
</label>
|
||||||
</li>
|
</li>
|
||||||
<li className={styles.galtinn}>
|
<li className={styles.galtinn}>
|
||||||
<Link href="/">Mitt medlemskap →</Link>
|
<a href="https://galtinn.neuf.no/" target="_blank">
|
||||||
|
Mitt medlemskap →
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
{/* TODO: skal trolig ikke være så synlig ved lansering */}
|
{/* TODO: skal trolig ikke være så synlig ved lansering */}
|
||||||
<Link href="/lokaler">Lokaler*</Link>
|
<Link href="/lokaler">Lokaler*</Link>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
{/* TODO: skal trolig ikke være så synlig ved lansering */}
|
||||||
|
<Link href="/foreninger">Foreninger*</Link>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
Reference in New Issue
Block a user