chore: component import fixes (#259)
Co-authored-by: victor <viktor.generalov@nlogic.ai>
This commit is contained in:
@@ -10,6 +10,12 @@ import FwbJumbotronVideoExample from './jumbotron/examples/FwbJumbotronVideoExam
|
|||||||
|
|
||||||
#### Use the jumbotron component to show a marketing message to your users based on a headline and image inside of a card box based on Tailwind CSS
|
#### Use the jumbotron component to show a marketing message to your users based on a headline and image inside of a card box based on Tailwind CSS
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
:::tip
|
||||||
|
Original reference: [https://flowbite.com/docs/components/jumbotron/](https://flowbite.com/docs/components/jumbotron/)
|
||||||
|
:::
|
||||||
|
|
||||||
The Jumbotron (hero) component can be used as the first section of your website with a focus on a marketing message to increase the likelihood of the user to continue browsing your website.
|
The Jumbotron (hero) component can be used as the first section of your website with a focus on a marketing message to increase the likelihood of the user to continue browsing your website.
|
||||||
|
|
||||||
This UI component features a heading title, a short description, an optional CTA button, background image, gradient or solid background color and it’s generally inside of a card element.
|
This UI component features a heading title, a short description, an optional CTA button, background image, gradient or solid background color and it’s generally inside of a card element.
|
||||||
|
|||||||
@@ -43,5 +43,5 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
|
import { FwbJumbotron } from '../../../../src/index'
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -40,5 +40,5 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
|
import { FwbJumbotron } from '../../../../src/index'
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -105,5 +105,5 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
|
import { FwbJumbotron } from '../../../../src/index'
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -46,5 +46,5 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
|
import { FwbJumbotron } from '../../../../src/index'
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -53,5 +53,5 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
|
import { FwbJumbotron } from '../../../../src/index'
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ export { default as FwbFooterCopyright } from './components/FwbFooter/FwbFooterC
|
|||||||
export { default as FwbFooterIcon } from './components/FwbFooter/FwbFooterIcon.vue'
|
export { default as FwbFooterIcon } from './components/FwbFooter/FwbFooterIcon.vue'
|
||||||
export { default as FwbFooterLink } from './components/FwbFooter/FwbFooterLink.vue'
|
export { default as FwbFooterLink } from './components/FwbFooter/FwbFooterLink.vue'
|
||||||
export { default as FwbFooterLinkGroup } from './components/FwbFooter/FwbFooterLinkGroup.vue'
|
export { default as FwbFooterLinkGroup } from './components/FwbFooter/FwbFooterLinkGroup.vue'
|
||||||
|
export { default as FwbJumbotron } from './components/FwbJumbotron/FwbJumbotron.vue'
|
||||||
export { default as FwbListGroup } from './components/FwbListGroup/FwbListGroup.vue'
|
export { default as FwbListGroup } from './components/FwbListGroup/FwbListGroup.vue'
|
||||||
export { default as FwbListGroupItem } from './components/FwbListGroup/FwbListGroupItem.vue'
|
export { default as FwbListGroupItem } from './components/FwbListGroup/FwbListGroupItem.vue'
|
||||||
export { default as FwbModal } from './components/FwbModal/FwbModal.vue'
|
export { default as FwbModal } from './components/FwbModal/FwbModal.vue'
|
||||||
|
|||||||
Reference in New Issue
Block a user