Skip to content
Open
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
38 changes: 22 additions & 16 deletions src/_includes/layouts/base.njk
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ eleventyComputed:
<!-- Navigation Header -->
<header id="ff-header" class="ff-header">
<nav class="relative w-full flex items-center justify-between mx-auto max-screen-none lg:max-w-screen-xl 2xl:max-w-[1920px]">
<a class="flex md:hidden lg:flex no-underline hover:no-underline font-bold h-8 w-40 flex-row" href="/" style="font-family:'Baloo 2', sans-serif">
<a class="flex md:hidden lg:flex no-underline hover:no-underline font-bold h-8 w-40 flex-row" href="/" aria-label="FlowFuse home" style="font-family:'Baloo 2', sans-serif">
{% include "components/flowfuse-wordmark.njk" %}
</a>
<a class="w-8 h-8 hidden md:block lg:hidden shrink-0" href="/" style="font-family:'Baloo 2', sans-serif">
<a class="w-8 h-8 hidden md:block lg:hidden shrink-0" href="/" aria-label="FlowFuse home" style="font-family:'Baloo 2', sans-serif">
{% include "components/flowfuse-square.svg" %}
</a>
<div class="flex items-center gap-1 md:hidden">
Expand All @@ -247,18 +247,22 @@ eleventyComputed:
{% navoption "Platform", null, 0 %}
<ul class="narrow sm:grid sm:grid-flow-col sm:grid-rows-5 sm:pr-1 align-left sm:auto-rows-auto items-center">
{% navoption "Product", null, 1, null, true, "pl-3 title border-l-2" %}{% endnavoption %}
<ul class="sub-menu grid grid-rows-subgrid row-span-4 ml-7 auto-rows-auto border-l-2">
{% navoption "Features", "/platform/features/", 2, "star" %}{% endnavoption %}
{% navoption "Integrations", "/integrations/", 1, "squares-plus" %}{% endnavoption %}
{% navoption "Blueprint Library", "/blueprints/", 1, "building-library" %}{% endnavoption %}
{% navoption "Security Statement", "/platform/security/", 1, "lock-closed" %}{% endnavoption %}
</ul>
<li class="contents">
<ul class="sub-menu grid grid-rows-subgrid row-span-4 ml-7 auto-rows-auto border-l-2">
{% navoption "Features", "/platform/features/", 2, "star" %}{% endnavoption %}
{% navoption "Integrations", "/integrations/", 1, "squares-plus" %}{% endnavoption %}
{% navoption "Blueprint Library", "/blueprints/", 1, "building-library" %}{% endnavoption %}
{% navoption "Security Statement", "/platform/security/", 1, "lock-closed" %}{% endnavoption %}
</ul>
</li>
{% navoption "Components", null, 1, null, true, "pl-3 title border-l-2" %}{% endnavoption %}
<ul class="sub-menu grid grid-rows-subgrid row-span-3 ml-7 auto-rows-auto border-l-2">
{% navoption "FlowFuse Dashboard", "/platform/dashboard/", 2, "dashboard" %}{% endnavoption %}
{% navoption "Device Agent", "/platform/device-agent/", 2, "device-agent" %}{% endnavoption %}
{% navoption "Node-RED", "/node-red/", 2, "code-bracket" %}{% endnavoption %}
</ul>
<li class="contents">
<ul class="sub-menu grid grid-rows-subgrid row-span-3 ml-7 auto-rows-auto border-l-2">
{% navoption "FlowFuse Dashboard", "/platform/dashboard/", 2, "dashboard" %}{% endnavoption %}
{% navoption "Device Agent", "/platform/device-agent/", 2, "device-agent" %}{% endnavoption %}
{% navoption "Node-RED", "/node-red/", 2, "code-bracket" %}{% endnavoption %}
</ul>
</li>
{% navoption "Why FlowFuse", "/platform/why-flowfuse/", 1, "flowfuse" %}{% endnavoption %}
</ul>
{% endnavoption %}
Expand Down Expand Up @@ -299,9 +303,11 @@ eleventyComputed:
<ul class="cta hidden md:flex flex-row items-center justify-end font-medium text no-underline z-10 bg-transparent w-auto">
<li class="flex"><a href="{{ site.appURL }}">Sign In</a></li>
<li class="hidden md:flex"><a href="{% include "sign-up-url.njk" %}" onclick="capture('cta-join', {'position': 'header'})">Free Trial</a></li>
<a class="ml-2 ff-btn ff-btn--primary uppercase text-sm inline-flex whitespace-nowrap" href="/contact-us" onclick="capture('cta-talk-us', {'position': 'header'})">
Contact Us
</a>
<li class="flex">
<a class="ml-2 ff-btn ff-btn--primary uppercase text-sm inline-flex whitespace-nowrap" href="/contact-us" onclick="capture('cta-talk-us', {'position': 'header'})">
Contact Us
</a>
</li>
</ul>
</nav>
<!-- Mobile CTAs -->
Expand Down
Loading