-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add buttons for new forms for hobby groups
- Loading branch information
1 parent
f90efd9
commit 75f4b03
Showing
2 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
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,28 +1,37 @@ | ||
import Markdown from 'common/components/Markdown'; | ||
import React from 'react'; | ||
import style from '../less/hobbygroups.less'; | ||
import { Button } from '@dotkomonline/design-system'; | ||
|
||
const introText = ` | ||
På denne siden finner du informasjon om alle de forskjellige interessegruppene i online. Ser du noe som ser | ||
interessant ut? Ta kontakt og møt noen med samme interesser som deg. Interessegruppene i Online er grupper for | ||
alle mulige slags interesser. Har du og en kompis eller to en sær/stilig/fantastisk interesse? Opprett en | ||
interessegruppe! | ||
## Hvordan opprette en interessegruppe? | ||
For å opprette en ny interessegruppe, eller ta over en inaktiv en, send en mail til <[email protected]> | ||
## Hvordan søke om støtte til din interessegruppe? | ||
Du kan søke om økonomisk støtte til din interessegruppe ved å sende en mail til <[email protected]> | ||
Mer informasjon om hvordan dette gjøres finnes | ||
[her](https://wiki.online.ntnu.no/info/innsikt-og-interface/interessegrupper/). | ||
`; | ||
|
||
const Intro = () => ( | ||
<div className={style.intro}> | ||
<Markdown source={introText} /> | ||
<a | ||
href="https://docs.google.com/forms/d/e/1FAIpQLSebaBslZ3nmh2wubQ_mPJYYU2XNIRlJZ1BooFuH7y6wxylaWA/viewform" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<Button className={style.leftbtn} aria-label="Opprett interessegruppe"> | ||
Opprett interessegruppe | ||
</Button> | ||
</a> | ||
<a | ||
href="https://docs.google.com/forms/d/e/1FAIpQLScr27q7C4gDvzHXajydznfFxPs7JaGpgYrNX4RPiVRvUHXVGg/viewform?pli=1" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<Button aria-label="Søk om støtte">Søk om støtte</Button> | ||
</a> | ||
</div> | ||
); | ||
|
||
|
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 |
---|---|---|
|
@@ -13,3 +13,8 @@ | |
margin-bottom: 10px; | ||
} | ||
} | ||
|
||
.leftbtn { | ||
margin-right: 10px; | ||
margin-bottom: 10px; | ||
} |