mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
* add serverless landing * update contact form * remove submitted-message margin * design fixes * more precise design fix * smaller headings * description and keywords for SEO --------- Co-authored-by: trean <trean.mi@gmail.com>
17 lines
601 B
HTML
17 lines
601 B
HTML
{{ with (.Site.GetPage "/serverless/hero") }}
|
|
<section class="serverless-hero">
|
|
<div class="serverless-hero__overlay"></div>
|
|
<div class="container">
|
|
<div class="serverless-hero__container">
|
|
<p class="serverless-hero__label">{{ .Params.label }}</p>
|
|
<h1 class="serverless-hero__title">{{ .Params.title }}</h1>
|
|
<p class="serverless-hero__description">{{ .Params.description }}</p>
|
|
<a href="{{ .Params.button.url }}" class="button button_contained button_lg">
|
|
{{ .Params.button.text }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
|