Files
merakiui/src/Models/components.js
2020-06-11 17:34:59 +02:00

75 lines
1.9 KiB
JavaScript

export default [
{
name: 'Alert',
components: [
{ name: 'Success pop' },
{ name: 'Info pop' },
{ name: 'Warning pop' },
{ name: 'Error pop' },
{ name: 'Notification pop' },
{ name: 'Success full width' },
{ name: 'Info full width' },
{ name: 'Warning full width' },
{ name: 'Error full width' },
],
},
{
name: 'Cards',
components: [
{ name: 'Article card' },
{ name: 'Article card with image' },
{ name: 'Simple product card' },
{ name: 'Product card' },
{ name: 'Product card with evaluation' },
{ name: 'Testimonial card' },
{ name: 'User card' },
{ name: 'User card with details' },
],
},
{
name: 'Forms',
components: [
{name: 'Inputs Form'},
{name: 'Newsletter form'},
{name: 'Sign in form'},
{name: 'Sign in form with image'},
],
},
{
name: 'Navbars',
components: [
{ name: 'Navbar' },
{ name: 'Navbar with search' },
{ name: 'Navbar with avatar' },
]
},
{
name: 'Headers',
components: [
{ name: 'Header with image' },
{ name: 'Header with pattern' },
],
},
{
name: 'Sections',
components: [
{ name: 'About me' },
{ name: 'Cards list' },
{ name: 'Paragraph with image' },
]
},
{
name: 'Paginations',
components: [
{ name: 'Pagination' },
]
},
{
name: 'Footers',
components: [
{ name: 'Simple Footer' },
{ name: 'Footer with subscribe form' },
]
},
];