merakiui/src/models/Components.js

76 lines
1.9 KiB
JavaScript
Raw Normal View History

2020-08-23 08:50:11 +00:00
export default [
{
2020-08-23 08:53:05 +00:00
name: "Alerts",
2020-08-23 08:50:11 +00:00
components: [
2020-08-23 08:53:05 +00:00
{ name: "SuccessPop" },
{ name: "InfoPop" },
{ name: "WarningPop" },
{ name: "ErrorPop" },
{ name: "NotificationPop" },
{ name: "SuccessFullWidth" },
{ name: "InfoFullWidth" },
{ name: "WarningFullWidth" },
{ name: "ErrorFullWidth" },
2020-08-23 08:50:11 +00:00
],
},
{
2020-08-23 08:53:05 +00:00
name: "Authentication",
components: [{ name: "SimpleLogin" }, { name: "LoginWithSideImage" }],
2020-08-23 08:50:11 +00:00
},
{
2020-08-23 08:53:05 +00:00
name: "Cards",
2020-08-23 08:50:11 +00:00
components: [
2020-08-23 08:53:05 +00:00
{ name: "Article" },
{ name: "ArticleWithSMIcons" },
{ name: "ArticleWithImage" },
{ name: "Product" },
{ name: "ProductWithEvaluation" },
{ name: "SimpleProduct" },
{ name: "Testimonial" },
{ name: "User" },
{ name: "UserWithDetails" },
2020-08-23 08:50:11 +00:00
],
},
{
2020-08-23 08:53:05 +00:00
name: "Forms",
components: [{ name: "Simple" }, { name: "Newsletter" }],
2020-08-23 08:50:11 +00:00
},
{
2020-08-23 08:53:05 +00:00
name: "Navbars",
2020-08-23 08:50:11 +00:00
components: [
2020-08-23 08:53:05 +00:00
{ name: "ECommerce" },
{ name: "WithSearch" },
{ name: "WithAvatar" },
],
2020-08-23 08:50:11 +00:00
},
{
2020-08-23 08:53:05 +00:00
name: "Heros",
2020-08-23 08:50:11 +00:00
components: [
2020-08-23 08:53:05 +00:00
{ name: "ECommerce" },
{ name: "WithImage" },
{ name: "WithPattern" },
2020-08-23 08:50:11 +00:00
],
},
{
2020-08-23 08:53:05 +00:00
name: "Sections",
2020-08-23 08:50:11 +00:00
components: [
2020-08-23 08:53:05 +00:00
{ name: "AboutMe" },
{ name: "Feature" },
{ name: "OurTeam" },
{ name: "ParagraphWithImage" },
],
2020-08-23 08:50:11 +00:00
},
{
2020-08-23 08:53:05 +00:00
name: "Paginations",
components: [{ name: "Simple" }],
2020-08-23 08:50:11 +00:00
},
{
2020-08-23 08:53:05 +00:00
name: "Footers",
2020-08-23 08:50:11 +00:00
components: [
2020-08-23 08:53:05 +00:00
{ name: "Simple" },
{ name: "WithDetails" },
{ name: "WithSubscribeForm" },
],
2020-08-23 08:50:11 +00:00
},
2020-08-23 08:53:05 +00:00
];