-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds products to strategy page (#426)
* feat: adds products to strategy page * fix: å / ø * fix: Magnus Olderø Sæther * fix: i -> j * drop the dash
- Loading branch information
Showing
10 changed files
with
173 additions
and
7 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
import { allColors, colorPairs } from '@variant/profile/lib/colors'; | ||
import Head from 'next/head'; | ||
import style from 'src/tjenesteomrader/shared/index.module.css'; | ||
import BlobText from '../../components/blobText/blobText'; | ||
import EmojiList from '../../components/emojiList/emojiList'; | ||
import TwoRows from '../../components/twoRows/twoRows'; | ||
import HeaderBackground from '../../images/headerBackground/headerBackground'; | ||
import style from 'src/tjenesteomrader/shared/index.module.css'; | ||
import { allColors, colorPairs } from '@variant/profile/lib/colors'; | ||
import Head from 'next/head'; | ||
|
||
// Arrows | ||
import { useState } from 'react'; | ||
import down1 from 'src/tjenesteomrader/images/arrows/down1.svg'; | ||
import down2 from 'src/tjenesteomrader/images/arrows/down2.svg'; | ||
import down3 from 'src/tjenesteomrader/images/arrows/down3.svg'; | ||
import down4 from 'src/tjenesteomrader/images/arrows/down4.svg'; | ||
import right1 from 'src/tjenesteomrader/images/arrows/right1.svg'; | ||
import right2 from 'src/tjenesteomrader/images/arrows/right2.svg'; | ||
import left1 from 'src/tjenesteomrader/images/arrows/left1.svg'; | ||
import left2 from 'src/tjenesteomrader/images/arrows/left2.svg'; | ||
import { useState } from 'react'; | ||
import right1 from 'src/tjenesteomrader/images/arrows/right1.svg'; | ||
import right2 from 'src/tjenesteomrader/images/arrows/right2.svg'; | ||
import download from './download.svg'; | ||
|
||
const Strategi = () => { | ||
const blobColor = allColors.secondary1__shade2; | ||
|
@@ -133,4 +134,103 @@ const Strategi = () => { | |
); | ||
}; | ||
|
||
import { ButtonLink } from '@components/button'; | ||
import { PropsWithChildren } from 'react'; | ||
import ThreeColumn from 'src/tjenesteomrader/components/three-column'; | ||
|
||
export type StrategyExtrasProps = PropsWithChildren<{}>; | ||
export function StrategyExtras({}: StrategyExtrasProps) { | ||
return ( | ||
<ThreeColumn> | ||
<div> | ||
<h3 className="fancy">Strateginettverk</h3> | ||
|
||
<p> | ||
Variant arrangerer meetups med faglig program og mingling med andre | ||
strateger. Meld deg på nettverket ved å sende mail til | ||
strategiansvarlig{' '} | ||
<a href="mailto:[email protected]"> | ||
Magnus Olderø Sæther ([email protected]) | ||
</a> | ||
</p> | ||
|
||
<p> | ||
<strong> | ||
Neste meetup: 12. januar kl. 18. Hvor: Varianthuset i Trondheim | ||
</strong> | ||
</p> | ||
|
||
<div className={style.buttonRow}> | ||
<ButtonLink href="mailto:[email protected]">Meld deg på</ButtonLink> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<h3 className="fancy">Strategisprint</h3> | ||
|
||
<p> | ||
Mange virksomheter sliter med jobbe helhetlig og strategisk med | ||
verdiskaping og kulturbygging. Variant har dette som ekspertisefelt, | ||
og tilbyr Strategi-sprint som en lavterskel starthjelp. Ta kontakt med | ||
oss om dette høres interessant ut for deg og din virksomhet. | ||
</p> | ||
<div className={style.buttonRow}> | ||
<ButtonLink href="mailto:[email protected]">Send forespørsel</ButtonLink> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<h3 className="fancy">Designressurser</h3> | ||
|
||
<p> | ||
I strategisk arbeid er det få verktøy som kobler strategiske | ||
målsettinger med kulturbygging, aktiviteter og tiltak. Variant har | ||
utviklet modellen{' '} | ||
<strong>© Strategic Mountain Map / Fjellmodellen</strong> for å løse | ||
dette behovet. Denne modellen er orientert rundt at arbeidet skal være | ||
samarbeidende og at resultatet (strategiproduktet) skal være visuelt | ||
og enkelt. Modellen er et levende rammeverk og egner seg godt i | ||
kontinuerlig strategiarbeid. | ||
</p> | ||
|
||
<p> | ||
Ta kontakt for å få råd og opplæring i hvordan denne modellen kan | ||
brukes effektivt. Last den ned her for å ta en titt: | ||
</p> | ||
|
||
<div className={style.buttonRow}> | ||
<ButtonLink | ||
href="/Variant_Fjellmodellen.pdf" | ||
download | ||
colorPair={colorPairs.secondary2} | ||
title="Last ned PDF-versjon av fjellkart" | ||
> | ||
<img | ||
className={style.downloadIcon} | ||
src={download} | ||
alt="" | ||
role="none" | ||
/> | ||
</ButtonLink> | ||
<ButtonLink | ||
href="/Variant_Fjellmodellen.png" | ||
download | ||
colorPair={colorPairs.secondary2} | ||
title="Last ned PNG-versjon av fjellkart" | ||
> | ||
PNG | ||
<img | ||
className={style.downloadIcon} | ||
src={download} | ||
alt="" | ||
role="none" | ||
/> | ||
</ButtonLink> | ||
</div> | ||
</div> | ||
</ThreeColumn> | ||
); | ||
} | ||
|
||
export default Strategi; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import style from './three-column.module.css'; | ||
|
||
import { PropsWithChildren } from 'react'; | ||
|
||
export type ThreeColumnProps = PropsWithChildren<{}>; | ||
export default function ThreeColumn({ children }: ThreeColumnProps) { | ||
return <div className={style.container}>{children}</div>; | ||
} |
11 changes: 11 additions & 0 deletions
11
src/tjenesteomrader/components/three-column/three-column.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.container { | ||
display: grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
gap: 2rem; | ||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
.container { | ||
grid-template-columns: repeat(1, 1fr); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1d23de4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
variant-no – ./
variant-no-git-main-variant1.vercel.app
variant-no-variant1.vercel.app
www.variant.no