This commit is contained in:
khatabwedaa
2021-02-15 09:39:16 +02:00
parent 455ad20203
commit abab7a1074
82 changed files with 216 additions and 4697 deletions

100
models/Components.js Normal file
View File

@@ -0,0 +1,100 @@
export default [
{
name: "Alerts",
components: [
{ name: "SuccessPop" },
{ name: "InfoPop" },
{ name: "WarningPop" },
{ name: "ErrorPop" },
{ name: "NotificationPop" },
{ name: "SuccessFullWidth" },
{ name: "InfoFullWidth" },
{ name: "WarningFullWidth" },
{ name: "ErrorFullWidth" },
],
},
{
name: "Authentication",
components: [{ name: "SimpleLogin" }, { name: "LoginWithSideImage" }],
},
{
name: "Buttons",
components: [
{ name: "Primary" },
{ name: "WithIcon" },
{ name: "WithMenu" },
],
},
{
name: "Cards",
components: [
{ name: "Article" },
{ name: "ArticleWithSMIcons" },
{ name: "ArticleWithImage" },
{ name: "Product" },
{ name: "ProductWithEvaluation" },
{ name: "SimpleProduct" },
{ name: "Testimonial" },
{ name: "User" },
{ name: "UserWithDetails" },
],
},
{
name: "Forms",
components: [
{ name: "Simple" },
{ name: "Search" },
{ name: "Contact" },
{ name: "SimpleNewsletter" },
{ name: "Newsletter" },
],
},
{
name: "Dropdowns",
components: [{ name: "Simple" }, { name: "Notification" }],
},
{
name: "Navbars",
components: [
{ name: "ECommerce" },
{ name: "WithSearch" },
{ name: "WithAvatar" },
{ name: "WithCategories" },
],
},
{
name: "Heros",
components: [
{ name: "ECommerce" },
{ name: "WithImage" },
{ name: "WithSideImage" },
{ name: "WithBGImage" },
{ name: "WithPattern" },
],
},
{
name: "Sidebars",
components: [{ name: "WithSearch" }, { name: "WithAvatar" }],
},
{
name: "Sections",
components: [
{ name: "AboutMe" },
{ name: "Feature" },
{ name: "OurTeam" },
{ name: "ParagraphWithImage" },
],
},
{
name: "Paginations",
components: [{ name: "Simple" }],
},
{
name: "Footers",
components: [
{ name: "Simple" },
{ name: "WithDetails" },
{ name: "WithSubscribeForm" },
],
},
];