├── .gitignore ├── README.md ├── jsconfig.json ├── package.json ├── public ├── img │ ├── cover.jpg │ └── tim-cook.jpg └── index.html ├── src ├── components │ ├── Content │ │ ├── AccountSettings.jsx │ │ ├── Actions.jsx │ │ ├── CompanySettings.jsx │ │ ├── Content.jsx │ │ └── Notifications.jsx │ ├── Cover.jsx │ ├── Main.jsx │ └── Sidebar │ │ ├── Actions.jsx │ │ ├── Data.jsx │ │ ├── Profile.jsx │ │ └── Sidebar.jsx ├── container │ └── App.js ├── helpers │ └── index.js ├── index.js └── styles │ └── index.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/package.json -------------------------------------------------------------------------------- /public/img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/public/img/cover.jpg -------------------------------------------------------------------------------- /public/img/tim-cook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/public/img/tim-cook.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/public/index.html -------------------------------------------------------------------------------- /src/components/Content/AccountSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Content/AccountSettings.jsx -------------------------------------------------------------------------------- /src/components/Content/Actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Content/Actions.jsx -------------------------------------------------------------------------------- /src/components/Content/CompanySettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Content/CompanySettings.jsx -------------------------------------------------------------------------------- /src/components/Content/Content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Content/Content.jsx -------------------------------------------------------------------------------- /src/components/Content/Notifications.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Content/Notifications.jsx -------------------------------------------------------------------------------- /src/components/Cover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Cover.jsx -------------------------------------------------------------------------------- /src/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Main.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Sidebar/Actions.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Data.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Sidebar/Data.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Sidebar/Profile.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/components/Sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /src/container/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/container/App.js -------------------------------------------------------------------------------- /src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/helpers/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neysidev/user-profile/HEAD/yarn.lock --------------------------------------------------------------------------------