diff --git a/web/src/components/people/PersonItem.tsx b/web/src/components/people/PersonItem.tsx
deleted file mode 100644
index 6545e5a..0000000
--- a/web/src/components/people/PersonItem.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import styles from "./personItem.module.scss";
-
-export const PersonItem = () => {
- return (
-
-
-
-
Ellisiv Sunde Myrva
-
Kommunikasjonssjef
-
-
-
- );
-};
diff --git a/web/src/components/people/PersonList.tsx b/web/src/components/people/PersonList.tsx
deleted file mode 100644
index ea9d6fb..0000000
--- a/web/src/components/people/PersonList.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import { PersonItem } from "./PersonItem";
-import styles from "./personList.module.scss";
-
-export const PersonList = () => {
- return (
-
- );
-};
diff --git a/web/src/components/people/PersonSection.tsx b/web/src/components/people/PersonSection.tsx
deleted file mode 100644
index 76cd5e9..0000000
--- a/web/src/components/people/PersonSection.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import { PersonList } from "./PersonList";
-import styles from "./personSection.module.scss";
-
-export const PersonSection = ({ heading }: { heading: string }) => {
- return (
-
- {heading}
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
- tristique rutrum nibh quis feugiat. Sed nisl ante, suscipit at justo ac,
- elementum interdum justo. Sed sed mi sit amet nibh molestie lacinia.{" "}
-
-
-
- );
-};
diff --git a/web/src/components/people/personItem.module.scss b/web/src/components/people/personItem.module.scss
deleted file mode 100644
index 82c4998..0000000
--- a/web/src/components/people/personItem.module.scss
+++ /dev/null
@@ -1,43 +0,0 @@
-.personItem {
- position: relative;
- list-style: none;
- display: flex;
- align-items: center;
- gap: var(--spacing-s);
-}
-
-.image {
- flex: none;
- width: 7rem;
- height: 7rem;
- background: var(--color-placeholder);
- border-radius: 100%;
-}
-
-.text {
- padding: 0;
-}
-
-.name,
-.role {
- font-size: var(--spacing-s);
-}
-
-.role {
- font-family: var(--font-serif);
-}
-
-.contact {
- list-style: none;
- margin: .6rem 0;
- font-size: var(--font-size-caption);
- font-weight: 500;
- line-height: 1.7;
-}
-
-.icon {
- display: inline-block;
- width: var(--size-icon);
- text-align: center;
- margin-right: .4rem;
-}
\ No newline at end of file
diff --git a/web/src/components/people/personList.module.scss b/web/src/components/people/personList.module.scss
deleted file mode 100644
index 08e491e..0000000
--- a/web/src/components/people/personList.module.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-.personList {
- display: grid;
- grid-template-columns: 1fr;
- column-gap: var(--spacing-gap-column);
- row-gap: var(--spacing-gap-row);
- padding-bottom: var(--spacing-section-bottom);
-}
-
-@media (min-width: 740px) {
- .personList {
- grid-template-columns: repeat(2, 1fr);
- }
-}
-
-@media (min-width: 1340px) {
- .personList {
- grid-template-columns: repeat(3, 1fr);
- }
-}
\ No newline at end of file
diff --git a/web/src/components/people/personSection.module.scss b/web/src/components/people/personSection.module.scss
deleted file mode 100644
index 0f6540a..0000000
--- a/web/src/components/people/personSection.module.scss
+++ /dev/null
@@ -1,25 +0,0 @@
-.personSection {
- background: var(--color-background-secondary);
- margin: calc(var(--spacing-sitepadding-block)*2) calc(var(--spacing-sitepadding-inline)*-1);
- padding: var(--spacing-sitepadding-block) var(--spacing-sitepadding-inline);
-
- +.personSection {
- margin-top: calc(var(--spacing-sitepadding-block)*-2);
- }
-
- &:nth-of-type(even) {
- background: var(--color-background);
- }
-
- &:last-child {
- margin-bottom: 0;
- }
-}
-
-.heading {
- margin: 0 0 1.6rem;
-}
-
-.intro {
- margin-bottom: 3rem;
-}
\ No newline at end of file