import React from "react"; import { Box, Typography } from "@mui/material"; import Card from "@mui/material/Card"; const personalInfo = [ { title: 'Full Name :', text: 'Andrew Burns', }, { title: 'Mobile :', text: '(123) 123 1234', }, { title: 'Email :', text: 'andrewburns@gmail.com', }, { title: 'Location : ', text: 'USA', }, { title: 'Experience : ', text: 'Back end Developer', }, ] const PersonalInformation = () => { return ( <> Personal Information About Me: Hi I'm Andrew Burns,has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. {personalInfo.map((info) => ( {info.title} {info.text} ))} ); }; export default PersonalInformation;