{"id":20525832,"url":"https://github.com/mdbootstrap/react-profiles","last_synced_at":"2025-04-14T03:51:55.049Z","repository":{"id":65556870,"uuid":"518825442","full_name":"mdbootstrap/react-profiles","owner":"mdbootstrap","description":"Responsive Profiles built with Bootstrap 5. Lots of templates such as card profile, user profile, profile form, with followers, avatars, comments, stats, social media and many more.","archived":false,"fork":false,"pushed_at":"2022-08-01T11:39:56.000Z","size":554,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-12T05:09:52.508Z","etag":null,"topics":["bootstrap","bootstrap-profiles","bootstrap-react","bootstrap-template","bootstrap-theme","bootstrap5","css","jsx","react","react-profiles"],"latest_commit_sha":null,"homepage":"https://mdbootstrap.com/docs/react/extended/profiles/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mdbootstrap.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License.pdf","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-28T11:51:30.000Z","updated_at":"2023-03-16T14:36:02.000Z","dependencies_parsed_at":"2023-01-29T09:31:08.923Z","dependency_job_id":null,"html_url":"https://github.com/mdbootstrap/react-profiles","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-profiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-profiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-profiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdbootstrap%2Freact-profiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mdbootstrap","download_url":"https://codeload.github.com/mdbootstrap/react-profiles/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248578859,"owners_count":21127713,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","bootstrap-profiles","bootstrap-react","bootstrap-template","bootstrap-theme","bootstrap5","css","jsx","react","react-profiles"],"created_at":"2024-11-15T23:09:58.436Z","updated_at":"2025-04-14T03:51:55.030Z","avatar_url":"https://github.com/mdbootstrap.png","language":"JavaScript","readme":"\nResponsive Profiles built with Bootstrap 5. Lots of templates such as card profile, user profile, profile form, with followers, avatars, comments, stats, social media and many more\n\nCheck out [React Profiles Documentation](https://mdbootstrap.com/docs/react/extended/profiles/) for detailed instructions \u0026 even more examples.\n\n## Basic example\n\n![React Profiles](https://mdbootstrap.com/img/Marketing/github/profiles/basic.png)\n\n```js\nimport React from 'react';\nimport { MDBCol, MDBContainer, MDBRow, MDBCard, MDBCardTitle, MDBCardText, MDBCardBody, MDBCardImage, MDBBtn } from 'mdb-react-ui-kit';\n\nexport default function Basic() {\n  return (\n    \u003cdiv className=\"vh-100\" style={{ backgroundColor: '#9de2ff' }}\u003e\n      \u003cMDBContainer\u003e\n        \u003cMDBRow className=\"justify-content-center\"\u003e\n          \u003cMDBCol md=\"9\" lg=\"7\" xl=\"5\" className=\"mt-5\"\u003e\n            \u003cMDBCard style={{ borderRadius: '15px' }}\u003e\n              \u003cMDBCardBody className=\"p-4\"\u003e\n                \u003cdiv className=\"d-flex text-black\"\u003e\n                  \u003cdiv className=\"flex-shrink-0\"\u003e\n                    \u003cMDBCardImage\n                      style={{ width: '180px', borderRadius: '10px' }}\n                      src='https://mdbcdn.b-cdn.net/img/Photos/new-templates/bootstrap-profiles/avatar-1.webp'\n                      alt='Generic placeholder image'\n                      fluid /\u003e\n                  \u003c/div\u003e\n                  \u003cdiv className=\"flex-grow-1 ms-3\"\u003e\n                    \u003cMDBCardTitle\u003eDanny McLoan\u003c/MDBCardTitle\u003e\n                    \u003cMDBCardText\u003eSenior Journalist\u003c/MDBCardText\u003e\n\n                    \u003cdiv className=\"d-flex justify-content-start rounded-3 p-2 mb-2\"\n                      style={{ backgroundColor: '#efefef' }}\u003e\n                      \u003cdiv\u003e\n                        \u003cp className=\"small text-muted mb-1\"\u003eArticles\u003c/p\u003e\n                        \u003cp className=\"mb-0\"\u003e41\u003c/p\u003e\n                      \u003c/div\u003e\n                      \u003cdiv className=\"px-3\"\u003e\n                        \u003cp className=\"small text-muted mb-1\"\u003eFollowers\u003c/p\u003e\n                        \u003cp className=\"mb-0\"\u003e976\u003c/p\u003e\n                      \u003c/div\u003e\n                      \u003cdiv\u003e\n                        \u003cp className=\"small text-muted mb-1\"\u003eRating\u003c/p\u003e\n                        \u003cp className=\"mb-0\"\u003e8.5\u003c/p\u003e\n                      \u003c/div\u003e\n                    \u003c/div\u003e\n                    \u003cdiv className=\"d-flex pt-1\"\u003e\n                      \u003cMDBBtn outline className=\"me-1 flex-grow-1\"\u003eChat\u003c/MDBBtn\u003e\n                      \u003cMDBBtn className=\"flex-grow-1\"\u003eFollow\u003c/MDBBtn\u003e\n                    \u003c/div\u003e\n                  \u003c/div\u003e\n                \u003c/div\u003e\n              \u003c/MDBCardBody\u003e\n            \u003c/MDBCard\u003e\n          \u003c/MDBCol\u003e\n        \u003c/MDBRow\u003e\n      \u003c/MDBContainer\u003e\n    \u003c/div\u003e\n  );\n}\n```\n\n## How to use?\n\n1. Download MDB React - free UI KIT\n\n2. Choose your favourite customized component and click on the image\n\n3. Copy \u0026 paste the code into your MDB project\n\n[▶️ Subscribe to YouTube channel for web development tutorials \u0026 resources](https://www.youtube.com/MDBootstrap?sub_confirmation=1)\n\n## More examples\n\n[React Profiles #2:\n![React Profiles](https://mdbootstrap.com/img/Marketing/github/profiles/section-2.png)](https://mdbootstrap.com/docs/react/extended/profiles/#section-2)\n\n[React Profiles #3:\n![React Profiles](https://mdbootstrap.com/img/Marketing/github/profiles/section-3.png)](https://mdbootstrap.com/docs/react/extended/profiles/#section-3)\n\n[React Profiles #4:\n![React Profiles](https://mdbootstrap.com/img/Marketing/github/profiles/section-4.png)](https://mdbootstrap.com/docs/react/extended/profiles/#section-4)\n\n[React Profiles #5:\n![React Profiles](https://mdbootstrap.com/img/Marketing/github/profiles/section-5.png)](https://mdbootstrap.com/docs/react/extended/profiles/#section-5)\n\n[React Profiles #6:\n![React Profiles](https://mdbootstrap.com/img/Marketing/github/profiles/section-6.png)](https://mdbootstrap.com/docs/react/extended/profiles/#section-6)\n\n[React Profiles #7:\n![React Profiles](https://mdbootstrap.com/img/Marketing/github/profiles/section-7.png)](https://mdbootstrap.com/docs/react/extended/profiles/#section-7)\n\n___\n\n## More React documentation\n\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/components/buttons/\"\u003eReact buttons\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/components/carousel/\"\u003eReact carousel\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/components/cards/\"\u003eReact cards\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/content-styles/colors/\"\u003eReact colors\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/components/progress/\"\u003eReact progress\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/content-styles/icons/\"\u003eReact icons\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://mdbootstrap.com/docs/react/content-styles/typography/\"\u003eReact typography\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdbootstrap%2Freact-profiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdbootstrap%2Freact-profiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdbootstrap%2Freact-profiles/lists"}