temp/src/Components/AnomolyAttendencePage.jsx

40 lines
1.0 KiB
JavaScript

import { Box } from "@mui/material";
import HomepageCard from "./HomepageCard";
import {useState,useEffect} from "react"
const AnomolyAttendencePage = () =>{
const cards = [
{
title: "Reassigned Serial Number Updation",
url: "/anomoly/attendence/reassigned"
},
// {
// title: "Additional Student Record Insertion",
// url: "/anomoly/attendence/additionalRecord",
// },
{
title: "Additional Sheet Insertion",
url: "/anomoly/attendence/additionalSheet",
}
]
return (
<>
<Box>
<Box className="d-flex justify-content-center text-light bg-primary rounded py-3">
<h1>Welcome to exampaper.vidh.ai</h1>
</Box>
<Box className="p-3">
{cards.map((card) => (
<HomepageCard title={card?.title} url={card?.url} />
))}
</Box>
</Box>
</>
);
}
export default AnomolyAttendencePage;