Skip to content

Commit 5be511c

Browse files
Add template for case studies
1 parent 3b22c8d commit 5be511c

File tree

3 files changed

+154
-0
lines changed

3 files changed

+154
-0
lines changed

docs/.vuepress/config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ module.exports = {
104104
text: 'Tutorials',
105105
link: '/tutorials/hello-world'
106106
},
107+
{
108+
text: 'Case Studies',
109+
link: '/case-studies'
110+
},
107111
{
108112
text: 'Blog',
109113
link: '/blog/'
Lines changed: 16 additions & 0 deletions
Loading

docs/case-studies.md

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
---
2+
cases: true
3+
sidebar: false
4+
tagline: "Bitcoin applications building with BDK"
5+
description: "A list of bitcoin applications and services building with BDK"
6+
actionText: "Add your project"
7+
actionLink: "https://github.com/orgs/lightningdevkit/discussions/1554"
8+
editLink: false
9+
lastUpdated: false
10+
---
11+
12+
<h1 class="more-cases-heading">
13+
Meet the projects building with BDK
14+
</h1>
15+
16+
<CodeSwitcher :languages="{all: 'All', mobile:'Mobile', web:'Web', desktop:'Desktop', custodial: 'Custodial', infra:'Infrastructure', misc:'Misc',}">
17+
18+
<template v-slot:mobile>
19+
<div class="case-studies">
20+
<div class="case-study-item">
21+
<a href="https://bitcoindevkit.org" target="_blank">
22+
<img src="/img/bitcoindevkit.svg" />
23+
</a>
24+
<h3>
25+
<a href="https://bitcoindevkit.org" target="_blank">Example Mobile App</a>
26+
</h3>
27+
<p>A cool app built with BDK.</p>
28+
</div>
29+
</div>
30+
</template>
31+
32+
<template v-slot:web>
33+
<div class="case-studies">
34+
<div class="case-study-item">
35+
<a href="https://bitcoindevkit.org" target="_blank">
36+
<img src="/img/bitcoindevkit.svg" />
37+
</a>
38+
<h3>
39+
<a href="https://bitcoindevkit.org" target="_blank">Example Web App</a>
40+
</h3>
41+
<p>A cool app built with BDK.</p>
42+
</div>
43+
</div>
44+
</template>
45+
46+
<template v-slot:desktop>
47+
<div class="case-studies">
48+
<div class="case-study-item">
49+
<a href="https://bitcoindevkit.org" target="_blank">
50+
<img src="/img/bitcoindevkit.svg" />
51+
</a>
52+
<h3>
53+
<a href="https://bitcoindevkit.org" target="_blank">Example Desktop App</a>
54+
</h3>
55+
<p>A cool app built with BDK.</p>
56+
</div>
57+
</div>
58+
</template>
59+
60+
<template v-slot:custodial>
61+
<div class="case-studies">
62+
<div class="case-study-item">
63+
<a href="https://bitcoindevkit.org" target="_blank">
64+
<img src="/img/bitcoindevkit.svg" />
65+
</a>
66+
<h3>
67+
<a href="https://bitcoindevkit.org" target="_blank">Example Custodial App</a>
68+
</h3>
69+
<p>A cool app built with BDK.</p>
70+
</div>
71+
</div>
72+
</template>
73+
74+
<template v-slot:infra>
75+
<div class="case-studies">
76+
<div class="case-study-item">
77+
<a href="https://bitcoindevkit.org" target="_blank">
78+
<img src="/img/bitcoindevkit.svg" />
79+
</a>
80+
<h3>
81+
<a href="https://bitcoindevkit.org" target="_blank">Example Infrastructure App</a>
82+
</h3>
83+
<p>A cool app built with BDK.</p>
84+
</div>
85+
</div>
86+
</template>
87+
88+
<template v-slot:misc>
89+
<div class="case-studies">
90+
<div class="case-study-item">
91+
<a href="https://bitcoindevkit.org" target="_blank">
92+
<img src="/img/bitcoindevkit.svg" />
93+
</a>
94+
<h3>
95+
<a href="https://bitcoindevkit.org" target="_blank">Example miscellaneous App</a>
96+
</h3>
97+
<p>A cool app built with BDK.</p>
98+
</div>
99+
</div>
100+
</template>
101+
102+
<template v-slot:all>
103+
<div class="case-studies">
104+
<div class="case-study-item">
105+
<a href="https://bitcoindevkit.org" target="_blank">
106+
<img src="/img/bitcoindevkit.svg" />
107+
</a>
108+
<h3>
109+
<a href="https://bitcoindevkit.org" target="_blank">Example App 1</a>
110+
</h3>
111+
<p>A cool app built with BDK.</p>
112+
</div>
113+
<div class="case-study-item">
114+
<a href="https://bitcoindevkit.org" target="_blank">
115+
<img src="/img/bitcoindevkit.svg" />
116+
</a>
117+
<h3>
118+
<a href="https://bitcoindevkit.org" target="_blank">Example App 2</a>
119+
</h3>
120+
<p>A cool app built with BDK.</p>
121+
</div>
122+
<div class="case-study-item">
123+
<a href="https://bitcoindevkit.org" target="_blank">
124+
<img src="/img/bitcoindevkit.svg" />
125+
</a>
126+
<h3>
127+
<a href="https://bitcoindevkit.org" target="_blank">Example App 3</a>
128+
</h3>
129+
<p>A cool app built with BDK.</p>
130+
</div>
131+
</div>
132+
</template>
133+
134+
</CodeSwitcher>

0 commit comments

Comments
 (0)