123 lines
3.9 KiB
Handlebars
123 lines
3.9 KiB
Handlebars
<div class="relative bg-white dark:bg-gray-900 dark:text-white py-14">
|
|
<div class="w-default py-20 sm:py-4 flex justify-center md:justify-between flex-wrap md:space-x-4 space-y-4">
|
|
|
|
{{!-- Logo and social --}}
|
|
|
|
<div class=" text-center md:text-left w-full md:w-full lg:w-2/6 md:mb-10">
|
|
<a href="{{@site.url}}" class="flex justify-center md:justify-start">
|
|
<img class="h-10 mr-4" src="{{@site.logo}}" alt="logo">
|
|
<div class="text-2xl text-blue-600 dark:text-blue-500 title-font font-bold mt-1">
|
|
Speckle
|
|
</div>
|
|
</a>
|
|
<p class="text-gray-500 text-base my-4">
|
|
{{@site.description}}
|
|
</p>
|
|
<div class="flex space-x-6 justify-center md:justify-start">
|
|
{{> extras/socialLinks }}
|
|
</div>
|
|
<div class="mt-10">
|
|
{{> navbarCTA }}
|
|
</div>
|
|
<p class="text-gray-500 text-xs mt-10">
|
|
© Aec Systems Ltd. Speckle and Speckle Systems are trademarks of AEC Systems Ltd., registered
|
|
in the UK and in other countries. Company No. 12403784. <br><br>
|
|
<a class="text-blue-600" href="/terms">Terms of service</a> | <a class="text-blue-600" href="/privacy">Privacy policy</a>
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{{!-- Use Cases --}}
|
|
|
|
<div class=" text-center md:text-left pt-4 md:pt-0 w-full md:w-2/6 lg:w-1/6">
|
|
<h3 class="text-sm font-semibold text-gray-800 dark:text-gray-200 tracking-wider uppercase">
|
|
Features
|
|
</h3>
|
|
<ul class="mt-4 space-y-4">
|
|
|
|
{{#get "posts" filter="tags:features+featured:true" limit="3"}}
|
|
{{#foreach posts}}
|
|
<li>
|
|
<a href="{{url}}" class="text-base text-gray-500 hover:text-gray-900 dark:hover:text-gray-100">
|
|
{{title}}
|
|
</a>
|
|
</li>
|
|
{{/foreach}}
|
|
{{/get}}
|
|
|
|
{{#get "tags" filter="slug:usecases" as |tag|}}
|
|
<li>
|
|
<a href="/features" class="text-base text-gray-900 dark:text-gray-200 hover:text-gray-900 dark:hover:text-gray-100">
|
|
See All
|
|
</a>
|
|
</li>
|
|
{{/get}}
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
{{!-- Resources --}}
|
|
|
|
<div class=" text-center md:text-left pt-4 md:pt-0 w-full md:w-2/6 lg:w-1/6">
|
|
<h3 class="text-sm font-semibold text-gray-800 dark:text-gray-200 tracking-wider uppercase">
|
|
Developers
|
|
</h3>
|
|
<ul class="mt-4 space-y-4">
|
|
|
|
{{#get "posts" filter="tags:developers+featured:true" limit="3"}}
|
|
{{#foreach posts}}
|
|
<li>
|
|
<a href="{{url}}" class="text-base text-gray-500 hover:text-gray-900 dark:hover:text-gray-100">
|
|
{{title}}
|
|
</a>
|
|
</li>
|
|
{{/foreach}}
|
|
{{/get}}
|
|
|
|
{{#get "tags" filter="slug:usecases" as |tag|}}
|
|
<li>
|
|
<a href="/developers" class="text-base text-gray-900 dark:text-gray-200 hover:text-gray-900 dark:hover:text-gray-100">
|
|
See All
|
|
</a>
|
|
</li>
|
|
{{/get}}
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
{{!-- Company Stuff --}}
|
|
|
|
<div class=" text-center md:text-left pt-4 md:pt-0">
|
|
<h3 class="text-sm font-semibold text-gray-800 dark:text-gray-200 tracking-wider uppercase">
|
|
Company
|
|
</h3>
|
|
<ul class="mt-4 space-y-4">
|
|
|
|
<li>
|
|
<a href="/about" class="text-base text-gray-500 hover:text-gray-900 dark:hover:text-gray-100">
|
|
About
|
|
</a>
|
|
</li>
|
|
|
|
|
|
<li>
|
|
<a href="/careers" class="text-base text-gray-500 hover:text-gray-900 dark:hover:text-gray-100">
|
|
Careers
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="/partnerships" class="text-base text-gray-500 hover:text-gray-900 dark:hover:text-gray-100">
|
|
Partnerships
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/contact" class="text-base text-gray-500 hover:text-gray-900 dark:hover:text-gray-100">
|
|
Contact
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div> |