|
1 | | -import Image from "next/image"; |
2 | | -import { FaCrown } from "react-icons/fa"; |
3 | | - |
4 | | -import Webkom from "@/assets/images/webkom.png"; |
5 | | -import { Container } from "@/components/container"; |
6 | | -import { Heading } from "@/components/typography/heading"; |
7 | | -import { UnorderedList } from "@/components/typography/list"; |
8 | | -import { ListItem } from "@/components/typography/list-item"; |
9 | | -import { Text } from "@/components/typography/text"; |
10 | | - |
11 | | -export default function WebkomPage() { |
12 | | - return ( |
13 | | - <Container className="py-10 text-center"> |
14 | | - <Image className="mx-auto h-32 w-auto" src={Webkom} alt="Webkom logo" /> |
15 | | - <Heading className="mx-auto font-display">Webkom</Heading> |
16 | | - {/* Slack ble laget 5. aug 2020 */} |
17 | | - <Text className="text-xs text-muted-foreground">EST. 2020</Text> |
18 | | - |
19 | | - <Text className="text-muted-foreground"> |
20 | | - Tidligere og nåværende medlemmer av echo Webkom. |
21 | | - </Text> |
22 | | - |
23 | | - <div className="mx-auto my-10 max-w-md space-y-8"> |
24 | | - <UnorderedList className="list-none p-0 text-lg"> |
25 | | - <ListItem className="relative mx-auto w-fit"> |
26 | | - <FaCrown className="absolute -left-6 top-1 text-yellow-400" /> |
27 | | - <span>Andreas Bakseter (Co-founder)</span> |
28 | | - </ListItem> |
29 | | - <ListItem className="relative mx-auto w-fit"> |
30 | | - <FaCrown className="absolute -left-6 top-1 text-yellow-400" /> |
31 | | - <span>Bo Aanes (Co-founder)</span> |
32 | | - </ListItem> |
33 | | - </UnorderedList> |
34 | | - |
35 | | - <UnorderedList className="list-none p-0 text-lg"> |
36 | | - <ListItem>Alvar Hønsi</ListItem> |
37 | | - <ListItem>Øyvind Grutle</ListItem> |
38 | | - <ListItem>Sander Sigmundstad</ListItem> |
39 | | - <ListItem>Victoria Valner</ListItem> |
40 | | - </UnorderedList> |
41 | | - |
42 | | - {/* --- H21 --- */} |
43 | | - <UnorderedList className="list-none p-0 text-lg"> |
44 | | - <ListItem>Nikolaus Engh</ListItem> |
45 | | - <ListItem>Ole Magnus Fon Johnsen</ListItem> |
46 | | - <ListItem>Mathilde Bergenheim</ListItem> |
47 | | - <ListItem>Thea Jenny Kolnes</ListItem> |
48 | | - <ListItem>Felix Kaasa</ListItem> |
49 | | - </UnorderedList> |
50 | | - |
51 | | - {/* --- H22 --- */} |
52 | | - <UnorderedList className="list-none p-0 text-lg"> |
53 | | - <ListItem>Torger Bocianowski</ListItem> |
54 | | - <ListItem>Malin Torset Sivertstøl</ListItem> |
55 | | - <ListItem>Karolina Gil</ListItem> |
56 | | - <ListItem>Leoul Zinaye Tefera</ListItem> |
57 | | - <ListItem>Kjetil Alvestad</ListItem> |
58 | | - <ListItem>Jonas Hammerseth</ListItem> |
59 | | - </UnorderedList> |
60 | | - |
61 | | - {/* --- H23 --- */} |
62 | | - <UnorderedList className="list-none p-0 text-lg"> |
63 | | - <ListItem>Johanne Blikberg Herheim</ListItem> |
64 | | - <ListItem>Kristian Elde Johansen</ListItem> |
65 | | - <ListItem>Swarnika Sellathurai</ListItem> |
66 | | - <ListItem>Zeno Elio Leonardi</ListItem> |
67 | | - <ListItem>Izaak Sarnecki</ListItem> |
68 | | - <ListItem>Wengeal Abebe</ListItem> |
69 | | - <ListItem>Hermann Holstad Walaunet</ListItem> |
70 | | - </UnorderedList> |
71 | | - |
72 | | - {/* --- V24 --- */} |
73 | | - |
74 | | - {/* --- H24 --- */} |
75 | | - <UnorderedList className="list-none p-0 text-lg"> |
76 | | - <ListItem>Andreas Drevdal</ListItem> |
77 | | - <ListItem>Birk Monsen</ListItem> |
78 | | - </UnorderedList> |
79 | | - </div> |
80 | | - </Container> |
81 | | - ); |
82 | | -} |
| 1 | +import Image from "next/image"; |
| 2 | +import { FaCrown } from "react-icons/fa"; |
| 3 | + |
| 4 | +import Webkom from "@/assets/images/webkom.png"; |
| 5 | +import { Container } from "@/components/container"; |
| 6 | +import { Heading } from "@/components/typography/heading"; |
| 7 | +import { UnorderedList } from "@/components/typography/list"; |
| 8 | +import { ListItem } from "@/components/typography/list-item"; |
| 9 | +import { Text } from "@/components/typography/text"; |
| 10 | + |
| 11 | +export default function WebkomPage() { |
| 12 | + return ( |
| 13 | + <Container className="py-10 text-center"> |
| 14 | + <Image className="mx-auto h-32 w-auto" src={Webkom} alt="Webkom logo" /> |
| 15 | + <Heading className="mx-auto font-display">Webkom</Heading> |
| 16 | + {/* Slack ble laget 5. aug 2020 */} |
| 17 | + <Text className="text-xs text-muted-foreground">EST. 2020</Text> |
| 18 | + |
| 19 | + <Text className="text-muted-foreground"> |
| 20 | + Tidligere og nåværende medlemmer av echo Webkom. |
| 21 | + </Text> |
| 22 | + |
| 23 | + <div className="mx-auto my-10 max-w-md space-y-8"> |
| 24 | + <UnorderedList className="list-none p-0 text-lg"> |
| 25 | + <ListItem className="relative mx-auto w-fit"> |
| 26 | + <FaCrown className="absolute -left-6 top-1 text-yellow-400" /> |
| 27 | + <span>Andreas Bakseter (Co-founder)</span> |
| 28 | + </ListItem> |
| 29 | + <ListItem className="relative mx-auto w-fit"> |
| 30 | + <FaCrown className="absolute -left-6 top-1 text-yellow-400" /> |
| 31 | + <span>Bo Aanes (Co-founder)</span> |
| 32 | + </ListItem> |
| 33 | + </UnorderedList> |
| 34 | + |
| 35 | + <UnorderedList className="list-none p-0 text-lg"> |
| 36 | + <ListItem>Alvar Hønsi</ListItem> |
| 37 | + <ListItem>Øyvind Grutle</ListItem> |
| 38 | + <ListItem>Sander Sigmundstad</ListItem> |
| 39 | + <ListItem>Victoria Valner</ListItem> |
| 40 | + </UnorderedList> |
| 41 | + |
| 42 | + {/* --- H21 --- */} |
| 43 | + <UnorderedList className="list-none p-0 text-lg"> |
| 44 | + <ListItem>Nikolaus Engh</ListItem> |
| 45 | + <ListItem>Ole Magnus Fon Johnsen</ListItem> |
| 46 | + <ListItem>Mathilde Bergenheim</ListItem> |
| 47 | + <ListItem>Thea Jenny Kolnes</ListItem> |
| 48 | + <ListItem>Felix Kaasa</ListItem> |
| 49 | + </UnorderedList> |
| 50 | + |
| 51 | + {/* --- H22 --- */} |
| 52 | + <UnorderedList className="list-none p-0 text-lg"> |
| 53 | + <ListItem>Torger Bocianowski</ListItem> |
| 54 | + <ListItem>Malin Torset Sivertstøl</ListItem> |
| 55 | + <ListItem>Karolina Gil</ListItem> |
| 56 | + <ListItem>Leoul Zinaye Tefera</ListItem> |
| 57 | + <ListItem>Kjetil Alvestad</ListItem> |
| 58 | + <ListItem>Jonas Hammerseth</ListItem> |
| 59 | + </UnorderedList> |
| 60 | + |
| 61 | + {/* --- H23 --- */} |
| 62 | + <UnorderedList className="list-none p-0 text-lg"> |
| 63 | + <ListItem>Johanne Blikberg Herheim</ListItem> |
| 64 | + <ListItem>Kristian Elde Johansen</ListItem> |
| 65 | + <ListItem>Swarnika Sellathurai</ListItem> |
| 66 | + <ListItem>Zeno Elio Leonardi</ListItem> |
| 67 | + <ListItem>Izaak Sarnecki</ListItem> |
| 68 | + <ListItem>Wengeal Abebe</ListItem> |
| 69 | + <ListItem>Hermann Holstad Walaunet</ListItem> |
| 70 | + </UnorderedList> |
| 71 | + |
| 72 | + {/* --- V24 --- */} |
| 73 | + |
| 74 | + {/* --- H24 --- */} |
| 75 | + <UnorderedList className="list-none p-0 text-lg"> |
| 76 | + <ListItem>Andreas Drevdal</ListItem> |
| 77 | + <ListItem>Birk Monsen</ListItem> |
| 78 | + </UnorderedList> |
| 79 | + </div> |
| 80 | + </Container> |
| 81 | + ); |
| 82 | +} |
0 commit comments