mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 00:32:35 +10:00
- implement tips on loading screen
- implement centralized sections - removed react-spinner package
This commit is contained in:
19
src/data/leftSections.js
Normal file
19
src/data/leftSections.js
Normal file
@ -0,0 +1,19 @@
|
||||
import { AiOutlineTwitter } from "react-icons/ai";
|
||||
import { MdPerson } from "react-icons/md";
|
||||
import Profile from "../components/builder/sections/Profile";
|
||||
import SocialNetwork from "../components/builder/sections/SocialNetwork";
|
||||
|
||||
export default [
|
||||
{
|
||||
id: "profile",
|
||||
name: "Profile",
|
||||
icon: MdPerson,
|
||||
component: Profile,
|
||||
},
|
||||
{
|
||||
id: "social",
|
||||
name: "Social Network",
|
||||
icon: AiOutlineTwitter,
|
||||
component: SocialNetwork,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user