Skip to content

Commit 5c7ee9e

Browse files
authored
Create template for simple landings (#5113)
1 parent af64e8e commit 5c7ee9e

2 files changed

Lines changed: 37 additions & 25 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: layouts/page.njk
3+
---
4+
<div class="w-full page webinar">
5+
<div class="w-full pt-6 pb-24">
6+
<div class="container flex flex-col md:flex-row m-auto text-left max-lg:px-6 md:max-w-screen-lg gap-8">
7+
<div class="max-w-screen-sm w-full">
8+
<p>{{ intro | safe }}</p>
9+
<div class="ff-blue-card flex flex-row gap-6 items-center">
10+
{% if image %}
11+
<div class="max-w-24">
12+
{% set imageSrc = ["./", image] | join %}
13+
{% image imageSrc, imageAlt or title, [100] %}
14+
</div>
15+
{% endif %}
16+
<h4 class="font-light text-left">{{ cardText }}</h4>
17+
</div>
18+
{% include "social-proof.njk" %}
19+
</div>
20+
<!-- Form / Calendar Script -->
21+
<div class="product mt-3">
22+
<div class="w-80 w-full mx-auto">
23+
{% include hubspot.script %}
24+
</div>
25+
</div>
26+
</div>
27+
</div>
28+
</div>

src/free-consultation.njk

Lines changed: 9 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,20 @@
11
---
2-
layout: layouts/page.njk
2+
layout: layouts/landing-form.njk
33
title: Schedule your Free Consultation
44
meta:
55
description: Schedule a 30 minute free consultation with our experts and see how we can help scale your workflows.
66
robots: noindex, nofollow
7+
intro: >
8+
Facing challenges with your Node-RED applications in industrial or enterprise environments?
9+
<span class="font-bold">Schedule a free 30-minute consultation with our experts.</span>
10+
We'll assess your current setup and provide tailored recommendations to help you address pain points
11+
such as scalability, security, and workflow automation.
12+
image: images/node-red-icon.png
13+
imageAlt: Node-RED logo
14+
cardText: Our expertise has helped businesses across the world streamline Node-RED operations, developer velocity, security, and compliance.
715
hubspot:
816
script: "hubspot/hs-form.njk"
917
formId: d24fa635-f19c-400b-82d4-b6f233faf38b
1018
cta: "schedule-free-consult"
1119
reference: "free-consultation"
1220
---
13-
<div class="w-full page webinar">
14-
<div class="w-full pt-6 pb-24 bg-gray-50">
15-
<div class="container flex flex-col md:flex-row m-auto text-left max-lg:px-6 md:max-w-screen-lg gap-8 ">
16-
<div class="max-w-screen-sm w-full">
17-
<p>
18-
Facing challenges with your Node-RED applications in industrial or enterprise environments? <span class="font-bold">Schedule a free 30-minute consultation with our experts.</span> We'll assess your current setup and provide tailored recommendations to help you address pain points such as scalability, security, and workflow automation.
19-
</p>
20-
<!-- Social proof logos -->
21-
<div class="ff-blue-card flex flex-row gap-6 items-center">
22-
<div class="max-w-24">
23-
{% image "./images/node-red-icon.png", "Node-RED logo", [100] %}
24-
</div>
25-
<h4 class="font-light text-left">Our expertise has helped businesses across the world streamline Node-RED operations, developer velocity, security, and compliance.</h4>
26-
</div>
27-
{% include "social-proof.njk" %}
28-
</div>
29-
<!-- Form / Calendar Script -->
30-
<div class="product mt-3">
31-
<div class="w-80 w-full mx-auto">
32-
{% include hubspot.script %}
33-
</div>
34-
</div>
35-
</div>
36-
</div>

0 commit comments

Comments
 (0)