import * as React from "react"; import { Box, Typography, Button, Container, Stack } from "@mui/material"; import { useTheme, alpha } from "@mui/material/styles"; import { useNavigate } from "react-router-dom"; import ArrowForwardIcon from "@mui/icons-material/ArrowForward"; export default function Home() { const navigate = useNavigate(); const theme = useTheme(); return ( alpha(t.palette.common.white, t.palette.mode === "dark" ? 0.04 : 0.6), border: "1px solid", borderColor: "divider", borderRadius: 4, boxShadow: (t) => t.palette.mode === "dark" ? "0 8px 32px 0 rgba(0, 0, 0, 0.5)" : "0 8px 32px 0 rgba(31, 38, 135, 0.07)", }} > Welcome to Khata Your intelligent, extensible financial ledger. Control accounts, manage transactions, and track your data dynamically with our OpenAPI-driven architecture. ); }