mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 16:22:59 +10:00
20 lines
436 B
JavaScript
20 lines
436 B
JavaScript
import { AiOutlineTwitter } from "react-icons/ai";
|
|
import { MdPerson } from "react-icons/md";
|
|
import Profile from "../components/builder/sections/Profile";
|
|
import Social from "../components/builder/sections/Social";
|
|
|
|
export default [
|
|
{
|
|
id: "profile",
|
|
name: "Profile",
|
|
icon: MdPerson,
|
|
component: Profile,
|
|
},
|
|
{
|
|
id: "social",
|
|
name: "Social Network",
|
|
icon: AiOutlineTwitter,
|
|
component: Social,
|
|
},
|
|
];
|