diff --git a/frontend/src/views/Detection.jsx b/frontend/src/views/Detection.jsx
new file mode 100644
index 000000000..c2711b45d
--- /dev/null
+++ b/frontend/src/views/Detection.jsx
@@ -0,0 +1,58 @@
+import React from 'react';
+import { Container, Box, TextField, Switch, Card, CardContent, IconButton, Typography, Button } from '@mui/material';
+import EditIcon from '@mui/icons-material/Edit';
+import { styled } from '@mui/system';
+
+const ConnectedButton = styled(Button)({
+ backgroundColor: 'red',
+ color: 'white',
+});
+
+const RuleCard = ({ ruleName, description }) => (
+
+
+
+
{ruleName}
+
+
+
+
+
+
+
+ {description}
+
+
+ {/* we need icons here ??? */}
+
+
+
+
+);
+
+const Detection = () => {
+ return (
+
+
+
+
+ Group 1 Title
+
+ Not Connected to SIEM
+
+
+
+
+ Global disable/enable
+
+
+
+
+
+
+
+
+ );
+};
+
+export default Detection;