-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc_pages_NARAbout.js
More file actions
27 lines (26 loc) · 1.22 KB
/
src_pages_NARAbout.js
File metadata and controls
27 lines (26 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { Box, Card, CardContent, Typography } from '@mui/material';
export default function NARAbout() {
return (
<Box sx={{ p: 3 }}>
<Typography variant="h4" gutterBottom>
About NAR
</Typography>
<Card>
<CardContent>
<Typography variant="body1" gutterBottom>
NAR is a conceptual smoke alarm for your network, powered by local AI/LLM models. It monitors network traffic in real-time and provides actionable insights for improved home network security.
</Typography>
<Typography variant="body2" gutterBottom>
<strong>Why NAR?</strong> Prevent data theft, automate protection, gain peace of mind, and avoid resource-heavy cloud solutions.
</Typography>
<Typography variant="body2" gutterBottom>
<strong>Design Philosophy:</strong> Real-time analysis, minimal hardware, user-friendly output, and ethical privacy.
</Typography>
<Typography variant="body2" gutterBottom>
<strong>Technical Requirements:</strong> Runs on SBCs with NPUs, uses lightweight LLMs (White Rabbit NEO), integrates with Grafana and Security Onion.
</Typography>
</CardContent>
</Card>
</Box>
);
}