Skip to content

Commit

Permalink
retrieved cardData due to course planner UI
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulg1254 committed Jul 30, 2024
1 parent 6fa3c78 commit f2c0a5c
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions src/data/cardData.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
const cardData = [
{
id: "1",
state: "Andhra Pradesh",
boardsUploaded: 1,
totalBoards: 3,
details:
"Andhra Pradesh is a state in the southeastern coastal region of India.",
boards: ["AP Board", "NIOS", "ICSE"],
subjects: ["Telugu", "English", "Maths"],
},
{
id: "2",
state: "Maharashtra",
boardsUploaded: 2,
totalBoards: 3,
details:
"Maharashtra is a state in the western peninsular region of India.",
boards: ["Maharashtra Board", "CBSE", "ICSE"],
subjects: ["Marathi", "English", "Science"],
},
{
id: "3",
state: "Karnataka",
boardsUploaded: 2,
totalBoards: 3,
details: "Karnataka is a state in the southwestern region of India.",
boards: ["Karnataka Board", "ICSE", "NIOS"],
subjects: ["Kannada", "Maths", "Science"],
},
{
id: "4",
state: "Tamil Nadu",
boardsUploaded: 1,
totalBoards: 3,
details: "Tamil Nadu is a state in the southern part of India.",
boards: ["Tamil Nadu Board", "NIOS", "CBSE"],
subjects: ["Tamil", "English", "Social Studies"],
},
{
id: "5",
state: "Kerala",
boardsUploaded: 2,
totalBoards: 2,
details: "Kerala is a state on the southwestern Malabar Coast of India.",
boards: ["Kerala Board", "ICSE", "CBSE"],
subjects: ["Malayalam", "Science", "Maths"],
},
];

export default cardData;

0 comments on commit f2c0a5c

Please sign in to comment.