Joe Duffy 5d61319514
A handful of updates (#1798)
* A handful of updates

Here are some updates based on recent conversations and feedback:

* Update the homepage subheading to be a bit clearer about what
  Pulumi is and what it does.

* Change the Cloud Engineering menu item to Why Pulumi, and sort
  it to the right of Product.  This more clearly speaks to what
  this navigation item represents as well as its importance
  relative to learning about Pulumi's Product offerings.

* Change the Pulumi Product landing page to say Pulumi Overview,
  not Cloud Engineering Platform, since that's what you click to
  get there and it currently feels very disconnected from all of
  the surrounding marketing which speaks in terms of IaC.

* Add a paragraph to that overview page speaking simply to what
  Pulumi is, and making sure to mention open source.

* Add a sentence to the Get Started page about open source.

* Add more customer logos -- we should be updating this much more
  often!!  Also change the logos to scroll horizontally so that
  we aren't afraid to continue adding new ones from time to time.

* Add recent news stories -- we should be updating this much
  more often too!!  Apparently it's been over a year, despite having
  tons of news coverage to share.

* Run prettier to format things

* Sort the case studies

* crop tfir logo

Signed-off-by: susanev <susan.ra.evans@gmail.com>

Co-authored-by: susanev <susan.ra.evans@gmail.com>
2022-08-02 19:13:43 -07:00

47 lines
2.0 KiB
HTML

{{ define "hero" }}
{{ partial "hero.html" (dict "title" .Title) }}
{{ end }}
{{ define "main" }}
<div class="container mx-auto text-center my-16">
<h5 class="mx-auto max-w-xl mb-0">
{{ .Description }}
</h5>
</div>
<div class="container mx-auto max-w-xl md:max-w-4xl px-8 md:px-0">
<ul class="list-none p-0">
{{ $items := where (where .Site.Pages "Type" "case-studies") "Kind" "eq" "page" }}
{{ range $index, $item := sort $items ".Params.customer_name" }}
<li class="m-0 p-0">
<article class="pb-16 mb-16 border-b border-gray-300 md:flex items-start">
<div class="mb-8 md:mb-0 md:pt-2 px-8 md:w-1/3">
<a href="{{ .RelPermalink }}">
<img class="md:block w-40 md:w-48 mx-auto" src="{{ .Params.customer_logo }}" alt="{{ .Params.customer_name }} logo" />
</a>
</div>
<div class="md:w-2/3">
<h5 class="leading-none">
{{ if (isset .Params "redirect_to") }}
<a class="link" href="{{ .Params.redirect_to }}">
{{ .Params.customer_name }}
</a>
{{ else }}
<a class="link" href="{{ .RelPermalink }}">
{{ .Params.customer_name }}
</a>
{{ end }}
</h5>
<p class="mb-0">
{{ $item.Description }}
</p>
</div>
</article>
</li>
{{ end }}
</ul>
</div>
{{ partial "learnmore-contactus.html" . }}
{{ end }}