import { Box, Container, useTheme } from "@mui/material"; import { useAtom } from "jotai"; import { HeaderBar } from "../components/HeaderBar/HeaderBar"; import { SqlInjection } from "../components/Pages/SqlInjection/SqlInjection"; import { routeAtom } from "../lib/jotai"; export default function Index() { // contexts const theme = useTheme(); // atoms const [route, setRoute] = useAtom(routeAtom); return ( {/* main content goes here buddy */} ); }