temp/src/Components/Home.jsx

84 lines
1.8 KiB
React
Raw Normal View History

2024-05-23 09:43:09 +05:30
import { Box } from "@mui/material";
import HomepageCard from "./HomepageCard";
2024-06-11 18:18:19 +05:30
import {useState,useEffect} from "react"
2024-05-23 09:43:09 +05:30
const Home = () => {
const cards = [
{
title: "Reassigned Serial No Anomoly Manual Updation (ATTENDANCE)",
2024-06-12 11:56:52 +05:30
url: "/anomoly/attendence",
2024-06-11 18:18:19 +05:30
},
// {
// title: "Part A OCR Anomoly - Batch 2022",
// url: "/anomoly/partA",
// },
{
title: "Part A OCR Anomoly Dummy",
url: "/anomoly/partA?type=new",
},
{
title: "Part A OCR Anomoly - Old Dummy",
url: "/anomoly/partA?type=old",
},
2024-07-02 01:11:15 +05:30
{
title: "Part C",
url: "/anomoly/partC",
},
2024-06-11 18:18:19 +05:30
// {
// title:"Verification",
// url:"/verification"
// }
2024-06-15 16:53:45 +05:30
{
title:"SQL Playground",
url:"/sqlPlayground"
2024-06-25 14:41:11 +05:30
},
2024-07-03 18:42:11 +05:30
{
2024-07-04 12:47:03 +05:30
title:"QR Code Scanner",
2024-07-03 18:42:11 +05:30
url:"/barcodeScanner"
2024-07-04 12:59:18 +05:30
},
{
title:"EV Qrcode",
url:"/evQrcode"
2024-07-06 20:24:25 +05:30
},
{
title:"PlayGrounds",
url:"/Playgrounds"
2024-07-24 03:22:56 +05:30
},
2024-08-01 16:02:22 +05:30
{
title:"Part-A Dummy Duplicates",
url:"/DummyDuplicates/PartA"
},
2024-07-24 03:22:56 +05:30
// {
// title:"Revaluation",
// url:"/revaluation"
// },
2024-06-25 14:41:11 +05:30
// {
// title:"Marks Verfication",
// url:"/part-c/marks/verify"
// }
2024-06-11 18:18:19 +05:30
];
// const cards = [
// {
// title: "Reassingned Serial No Anomoly Manual Updation",
// url: "/anomoly/reassigned",
// }]
2024-07-03 18:42:11 +05:30
2024-05-23 09:43:09 +05:30
return (
<>
<Box>
<Box className="d-flex justify-content-center text-light bg-primary rounded py-3">
<h1>Welcome to exampaper.vidh.ai</h1>
</Box>
2024-07-04 12:59:18 +05:30
<Box className="p-3" style={{width:'100%'}}>
2024-05-23 09:43:09 +05:30
{cards.map((card) => (
<HomepageCard title={card?.title} url={card?.url} />
))}
</Box>
</Box>
</>
);
};
export default Home;