mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-04 08:06:43 +02:00
Merge pull request #5987 from mermaid-js/update-promos
Remove Product Hunt promos & Update Promo bar
This commit is contained in:
@@ -12,7 +12,7 @@ Try the Ultimate AI, Mermaid, and Visual Diagramming Suite by creating an accoun
|
|||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<a href="https://www.producthunt.com/posts/mermaid-whiteboard?embed=true&utm_source=badge-featured&utm_medium=badge&utm_souce=badge-mermaid-whiteboard" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=486720&theme=light" alt="Mermaid Whiteboard - Drag & Drop your Nodes with Mermaid's new Whiteboard! | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
<a href="https://www.producthunt.com/products/mermaid-chart?utm_source=badge-follow&utm_medium=badge&utm_souce=badge-mermaid-chart" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/follow.svg?product_id=552855&theme=light" alt="Mermaid Chart - A smarter way to create diagrams | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
|
@@ -1,14 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="-mt-6 mb-8">
|
|
||||||
<a
|
|
||||||
href="https://www.producthunt.com/posts/mermaid-whiteboard?embed=true&utm_source=badge-featured&utm_medium=badge&utm_souce=badge-mermaid-whiteboard"
|
|
||||||
target="_blank"
|
|
||||||
><img
|
|
||||||
src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=486720&theme=light"
|
|
||||||
alt="Mermaid Whiteboard - Drag & Drop your Nodes with Mermaid's new Whiteboard! | Product Hunt"
|
|
||||||
style="width: 250px; height: 54px"
|
|
||||||
width="250"
|
|
||||||
height="54"
|
|
||||||
/></a>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
@@ -7,6 +7,10 @@ interface Taglines {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const taglines: Taglines[] = [
|
const taglines: Taglines[] = [
|
||||||
|
{
|
||||||
|
label: 'Explore the Mermaid Whiteboard from the creators of Mermaid',
|
||||||
|
url: 'https://docs.mermaidchart.com/guides/whiteboard?utm_source=mermaid_live_editor&utm_medium=banner_ad&utm_campaign=whiteboard',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: 'Use the Visual Editor in Mermaid Chart to design and build diagrams',
|
label: 'Use the Visual Editor in Mermaid Chart to design and build diagrams',
|
||||||
url: 'https://www.mermaidchart.com/play?utm_source=mermaid_live_editor&utm_medium=banner_ad&utm_campaign=visual_editor',
|
url: 'https://www.mermaidchart.com/play?utm_source=mermaid_live_editor&utm_medium=banner_ad&utm_campaign=visual_editor',
|
||||||
@@ -16,8 +20,8 @@ const taglines: Taglines[] = [
|
|||||||
url: 'https://www.mermaidchart.com/play?utm_source=mermaid_live_editor&utm_medium=banner_ad&utm_campaign=teams',
|
url: 'https://www.mermaidchart.com/play?utm_source=mermaid_live_editor&utm_medium=banner_ad&utm_campaign=teams',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Skip the rough draft with Mermaid AI in Mermaid Chart',
|
label: 'Replace ChatGPT Pro, Mermaid.live, and LucidChart with Mermaid Pro',
|
||||||
url: 'https://www.mermaidchart.com/play?utm_source=mermaid_live_editor&utm_medium=banner_ad&utm_campaign=mermaid_ai',
|
url: 'https://www.mermaidchart.com/play?utm_source=mermaid_live_editor&utm_medium=banner_ad&utm_campaign=AIbundle',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -25,7 +29,7 @@ let index = ref(Math.floor(Math.random() * taglines.length));
|
|||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
index.value = (index.value + 1) % taglines.length;
|
index.value = (index.value + 1) % taglines.length;
|
||||||
}, 60_000);
|
}, 40_000);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -41,7 +45,7 @@ onMounted(() => {
|
|||||||
>
|
>
|
||||||
<span class="font-semibold">{{ taglines[index].label }}</span>
|
<span class="font-semibold">{{ taglines[index].label }}</span>
|
||||||
<button class="rounded bg-[#111113] p-1 px-2 text-sm font-semibold tracking-wide">
|
<button class="rounded bg-[#111113] p-1 px-2 text-sm font-semibold tracking-wide">
|
||||||
Try it now
|
Try now
|
||||||
</button>
|
</button>
|
||||||
</a>
|
</a>
|
||||||
</transition>
|
</transition>
|
||||||
|
@@ -9,8 +9,6 @@ import Contributors from '../components/Contributors.vue';
|
|||||||
import HomePage from '../components/HomePage.vue';
|
import HomePage from '../components/HomePage.vue';
|
||||||
// @ts-ignore Type not available
|
// @ts-ignore Type not available
|
||||||
import TopBar from '../components/TopBar.vue';
|
import TopBar from '../components/TopBar.vue';
|
||||||
// @ts-ignore Type not available
|
|
||||||
import ProductHuntBadge from '../components/ProductHuntBadge.vue';
|
|
||||||
import { getRedirect } from './redirect.js';
|
import { getRedirect } from './redirect.js';
|
||||||
// @ts-ignore Type not available
|
// @ts-ignore Type not available
|
||||||
import 'uno.css';
|
import 'uno.css';
|
||||||
@@ -25,7 +23,6 @@ export default {
|
|||||||
return h(Theme.Layout, null, {
|
return h(Theme.Layout, null, {
|
||||||
// Keeping this as comment as it took a lot of time to figure out how to add a component to the top bar.
|
// Keeping this as comment as it took a lot of time to figure out how to add a component to the top bar.
|
||||||
'home-hero-before': () => h(TopBar),
|
'home-hero-before': () => h(TopBar),
|
||||||
'home-hero-info-before': () => h(ProductHuntBadge),
|
|
||||||
'home-features-after': () => h(HomePage),
|
'home-features-after': () => h(HomePage),
|
||||||
'doc-before': () => h(TopBar),
|
'doc-before': () => h(TopBar),
|
||||||
});
|
});
|
||||||
|
@@ -6,7 +6,7 @@ Try the Ultimate AI, Mermaid, and Visual Diagramming Suite by creating an accoun
|
|||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<a href="https://www.producthunt.com/posts/mermaid-whiteboard?embed=true&utm_source=badge-featured&utm_medium=badge&utm_souce=badge-mermaid-whiteboard" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=486720&theme=light" alt="Mermaid Whiteboard - Drag & Drop your Nodes with Mermaid's new Whiteboard! | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
<a href="https://www.producthunt.com/products/mermaid-chart?utm_source=badge-follow&utm_medium=badge&utm_souce=badge-mermaid-chart" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/follow.svg?product_id=552855&theme=light" alt="Mermaid Chart - A smarter way to create diagrams | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user