import React from "react";
import { Box } from "@mui/material";
import HomepageCard from "./HomepageCard";
const PlayGrounds = () => {
const cards = [
// {
// title: "PART - A",
// url: "/Playground/PartA",
// },
{
title: "PART - C",
url: "/Playground/PartC",
},
// {
// title: "ATTENDENCE",
// url: "/Playground/Attendence",
// },
];
return (
<>
Welcome to exampaper.vidh.ai
{cards.map((card) => (
))}
>
);
};
export default PlayGrounds;