-
onChange(EViewOption.Card)} style={{display: 'flex', flexDirection: 'row', alignItems: 'baseline', marginRight: 5}}>
- {viewOption === EViewOption.Card ? : }
-
- Card View
-
-
-
- l
-
-
onChange(EViewOption.List)} style={{display: 'flex', flexDirection: 'row', alignItems: 'baseline', marginLeft: 5}}>
- {viewOption === EViewOption.List ? : }
-
- List View
-
-
-
- )
-}
-
-export default ViewToggle;
\ No newline at end of file
diff --git a/src/features/organisation-profile/components/services.tsx b/src/features/organisation-profile/components/services.tsx
deleted file mode 100644
index a917aeb..0000000
--- a/src/features/organisation-profile/components/services.tsx
+++ /dev/null
@@ -1,70 +0,0 @@
-import {
- Flex,
- HStack,
- Text,
- VStack,
- SimpleGrid,
- StackDivider,
-} from "@chakra-ui/react";
-import { Component } from "react";
-import { Service } from "../../../data/enums/service.enum";
-import { SupportArea } from "../../../data/enums/support-area.enum";
-import { GetIcon } from "../../../utilities/icon-mappings";
-import "../scss/services.scss";
-import "../../page-style.scss";
-
-type ServicesProp = {
- needs: SupportArea[]; // limit to 2
- offerrings: Service[]; // limit to 4
-};
-
-function generateServiceView(collection: Service[] | SupportArea[]) {
- return collection.map((item) => {
- return (
-