-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44acae6
commit 56025e9
Showing
10 changed files
with
67 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
############################### cloud partnerships ############################ | ||
partnerships: | ||
enable : true | ||
title : On the Cloud | ||
title : We Meet Our Clients Where They Are | ||
partner_item : | ||
# partner_item loop | ||
- name : Google Cloud Partner | ||
image : img/partners/googlecloud.png | ||
- name : Linode - Akamai Connected Cloud Partner | ||
image : img/partners/linode.png | ||
- name : Google Cloud Partner | ||
image : img/partners/googlecloud.png | ||
link : https://cloud.google.com/ | ||
- name : Amazon Web Services (AWS) | ||
image : img/partners/aws.png | ||
link : https://aws.amazon.com/ | ||
- name : Microsoft Azure | ||
image : img/partners/azure.png | ||
link : https://azure.microsoft.com/ | ||
- name : Linode - Akamai Connected Cloud Partner | ||
image : img/partners/linode.png | ||
link : https://www.linode.com/ | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
professional_services: | ||
enable: true | ||
service_item: | ||
- header_text: Professional Services | ||
description: Every organization is different. We work with clients to leverage their domain expertise and make sensible AI investments in LLMs and agents tailored to their use cases, strategy, and mission. | ||
button_text: Learn More | ||
link: /services | ||
- header_text: Data Management & Engineering | ||
description: Our data ingestion, storage, and hosting solutions make it easy to get started, refine domain-specific corpora, and responsibly manage and monitor data sets or sources that power models. | ||
button_text: Learn More | ||
link: /ensign-enterprise |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{{ $data := index site.Data site.Language.Lang }} | ||
|
||
{{ if $data.professional_services.professional_services.enable }} | ||
{{ with $data.professional_services.professional_services }} | ||
<section class="grid grid-cols-1 md:grid-cols-2 gap-14 md:gap-4 items-center mt-8"> | ||
{{ range .service_item }} | ||
<section class="flex flex-col h-full px-14"> | ||
<h2 class="font-bold text-xl md:text-2xl">{{ .header_text }}</h2> | ||
<p class="mt-3 mb-6">{{ .description }}</p> | ||
<div class="flex mt-auto justify-center"> | ||
<a href="{{ .link }}" class="bg-[#192E5B] text-white text-center font-bold px-16 py-4 rounded-md hover:bg-[#1D65A6]">{{ .button_text }}</a> | ||
</div> | ||
</section> | ||
{{ end }} | ||
</section> | ||
{{ end }} | ||
{{ end }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters