diff --git a/client/src/components/CardInfo/CardInfo.tsx b/client/src/components/CardInfo/CardInfo.tsx
deleted file mode 100644
index a81b3b6..0000000
--- a/client/src/components/CardInfo/CardInfo.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import { Divider, Text } from '@fluentui/react-components';
-import { PropsWithChildren } from 'react'
-
-interface CardInfoProps extends PropsWithChildren {
- label: string;
-}
-
-export default function CardInfo({
- children,
- label
-}: CardInfoProps) {
- return (
-
-
- {label}
-
-
-
-
- {children}
-
- )
-}
\ No newline at end of file
diff --git a/client/src/components/CardInfo/CardInfoLabel.tsx b/client/src/components/CardInfo/CardInfoLabel.tsx
deleted file mode 100644
index ea38d51..0000000
--- a/client/src/components/CardInfo/CardInfoLabel.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import { Text } from "@fluentui/react-components";
-
-interface CardInfoLabelProps {
- label: string;
- value: string | number;
-}
-
-export default function CardInfoLabel({
- label,
- value
-}: CardInfoLabelProps) {
- return (
-
-
- {label}
-
-
-
- {value}
-
-
- )
-}
\ No newline at end of file
diff --git a/client/src/components/ServerData.tsx b/client/src/components/ServerData.tsx
deleted file mode 100644
index 12e8e6a..0000000
--- a/client/src/components/ServerData.tsx
+++ /dev/null
@@ -1,47 +0,0 @@
-import { IServer } from '../interfaces/servers'
-import { useServerIps } from '../hooks/swrHooks'
-import CustomTable from './CustomTable'
-
-function ServerData({ id }: IServer) {
- const { serverIps } = useServerIps(id, 0, 10)
-
- return (
-
- {serverIps &&
- }
-
- )
-}
-
-export default ServerData
\ No newline at end of file
diff --git a/client/src/pages/Servers.tsx b/client/src/pages/Servers.tsx
index a88ce24..cb305a4 100644
--- a/client/src/pages/Servers.tsx
+++ b/client/src/pages/Servers.tsx
@@ -41,7 +41,7 @@ export default function Servers() {
}}>
setSelectedTab(data.value)}>
{tabs.map(tab => (
- {tab.name}
+ {tab.name}
))}