Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: component import fixes #259

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/components/jumbotron.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

---

:::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.

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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@
</template>

<script setup>
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
import { FwbJumbotron } from '../../../../src/index'
</script>
2 changes: 1 addition & 1 deletion docs/components/jumbotron/examples/FwbJumbotronExample.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@
</template>

<script setup>
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
import { FwbJumbotron } from '../../../../src/index'
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,5 @@
</template>

<script setup>
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
import { FwbJumbotron } from '../../../../src/index'
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
</template>

<script setup>
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
import { FwbJumbotron } from '../../../../src/index'
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@
</template>

<script setup>
import FwbJumbotron from '@/components/FwbJumbotron/FwbJumbotron.vue'
import { FwbJumbotron } from '../../../../src/index'
</script>
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export { default as FwbFooterCopyright } from './components/FwbFooter/FwbFooterC
export { default as FwbFooterIcon } from './components/FwbFooter/FwbFooterIcon.vue'
export { default as FwbFooterLink } from './components/FwbFooter/FwbFooterLink.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 FwbListGroupItem } from './components/FwbListGroup/FwbListGroupItem.vue'
export { default as FwbModal } from './components/FwbModal/FwbModal.vue'
Expand Down
Loading