Skip to content

Commit 3d4e398

Browse files
committed
Add cal.com support
1 parent bf7b109 commit 3d4e398

File tree

4 files changed

+57
-1
lines changed

4 files changed

+57
-1
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<b-inquiry-form>
2+
3+
<b-schedule-item>
4+
<b-title>Introductory Meeting (15 min)</b-title>
5+
<b-text>
6+
We'll quickly tell you about who we are and what we do, and let you decide if we can be of any assistance in
7+
the future.
8+
</b-text>
9+
<a href="https://app.cal.eu/tsvetan-igov/introductory-meeting" target="_blank">Schedule</a>
10+
</b-schedule-item>
11+
12+
<b-schedule-item>
13+
<b-title>Explore a Service (30 min)</b-title>
14+
<b-text>
15+
We'll tell you everything you would want to know about one of our services and answer all your
16+
questions.
17+
</b-text>
18+
<a href="https://app.cal.eu/tsvetan-igov/explore-a-service" target="_blank">Schedule</a>
19+
</b-schedule-item>
20+
21+
<b-schedule-item>
22+
<b-title>Free Consultation (60 min)</b-title>
23+
<b-text>
24+
We'll discuss into detail what your current pain points are and then share our expertise and even follow up
25+
with possible solutions and best next actions.
26+
</b-text>
27+
<a href="https://app.cal.eu/tsvetan-igov/free-consultation" target="_blank">Schedule</a>
28+
</b-schedule-item>
29+
30+
</b-inquiry-form>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Byteology.Website.Inquiry;
2+
3+
public partial class CalDotComForm : ComponentBase
4+
{
5+
[Parameter(CaptureUnmatchedValues = true)]
6+
public IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; }
7+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
b-inquiry-form {
2+
@apply flex flex-col items-stretch gap-8;
3+
}
4+
5+
b-inquiry-form > b-schedule-item {
6+
@apply flex flex-col grow justify-center gap-2;
7+
}
8+
9+
b-inquiry-form > b-schedule-item > a {
10+
@apply button;
11+
}
12+
13+
b-inquiry-form > b-schedule-item > b-title {
14+
@apply font-bold text-accent;
15+
}
16+
17+
b-inquiry-form > b-schedule-item > b-text {
18+
@apply text-sm italic text-neutral-200;
19+
}

src/Byteology.Website/Inquiry/DefaultInquiryComponent.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@using Byteology.Website.Inquiry
22
@using Byteology.Website.Inquiry.Contacts
33

4-
<InquiryComponent InquiryFormType="typeof(CalendlyForm)">
4+
<InquiryComponent InquiryFormType="typeof(CalDotComForm)">
55
<Sidebar>
66
<h2>Here's to Working Together</h2>
77
<p>

0 commit comments

Comments
 (0)