misc design progress and testing
This commit is contained in:
@@ -5,6 +5,7 @@ import { NewsList } from "@/components/news/NewsList";
|
||||
import Link from "next/link";
|
||||
import { PageHeader } from "@/components/general/PageHeader";
|
||||
import { PersonSection } from "@/components/people/PersonSection";
|
||||
import { ContactInfo } from "@/components/contact/ContactInfo";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
@@ -13,6 +14,7 @@ export default async function Page() {
|
||||
heading="Kontakt"
|
||||
lead="Her er info om hvordan du kan kontakte oss og sånt."
|
||||
/>
|
||||
<ContactInfo />
|
||||
<PersonSection heading="Styret" />
|
||||
<PersonSection heading="Administrasjonen" />
|
||||
</main>
|
||||
|
30
web/src/app/praktisk/page.tsx
Normal file
30
web/src/app/praktisk/page.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
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="Praktisk info" />
|
||||
<p>Velkommen til oss!</p>
|
||||
<div className="anchorLinks">
|
||||
Hopp til:
|
||||
<ul>
|
||||
<li>
|
||||
<button>Åpningstider</button>
|
||||
</li>
|
||||
<li>
|
||||
<button>Adresse</button>
|
||||
</li>
|
||||
<li>
|
||||
<button>Billetter</button>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<IconListBlock />
|
||||
</main>
|
||||
);
|
||||
}
|
@@ -4,6 +4,7 @@ import { getClient } from "@/app/client";
|
||||
import { VenueList } from "@/components/venues/VenueList";
|
||||
import Link from "next/link";
|
||||
import { PageHeader } from "@/components/general/PageHeader";
|
||||
import { Pig } from "@/components/general/Pig";
|
||||
|
||||
const VenueFragmentDefinition = graphql(`
|
||||
fragment Venue on VenuePage {
|
||||
@@ -55,6 +56,9 @@ export default async function Page() {
|
||||
<main className="site-main" id="main">
|
||||
<PageHeader heading="Utleie" />
|
||||
<VenueList venues={venues} />
|
||||
<div className="bg-pig">
|
||||
<Pig type="key" />
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user