Skip to content

Commit b006494

Browse files
committed
Adding partners and integrations
1 parent 3c783b2 commit b006494

12 files changed

Lines changed: 37 additions & 32 deletions

File tree

marketing/content/about.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,3 @@ SecureSBOM consolidates all aspects of SBOM lifecycle management—from generati
4646

4747
Ready to **secure your supply chain**?
4848
[Contact us](/contactus/) to discover how SecureSBOM can elevate your SBOM strategy—and your security posture.
49-
50-
---
51-
52-
© ShiftLeftCyber 2025. All rights reserved.

marketing/data/integrations.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
- name: "Interlynk"
2+
link: "https://www.interlynk.io/"
3+
img: "/img/thirdparty/interlynk.png"
4+
- name: "Reliza"
5+
link: "https://www.reliza.io/"
6+
img: "/img/thirdparty/reliza.png"
7+
- name: "Reliza ReARM"
8+
link: "https://rearmhq.com/"
9+
img: "/img/thirdparty/rearm.png"
10+
- name: "CycloneDX"
11+
link: "https://cyclonedx.org/"
12+
img: "/img/thirdparty/cyclonedx.png"
13+
- name: "SPDX"
14+
link: "https://spdx.dev/"
15+
img: "/img/thirdparty/spdx.png"
16+
- name: "GitHub"
17+
link: "https://github.com/shiftleftcyber"
18+
img: "/img/thirdparty/github.png"

marketing/layouts/_default/baseof.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
<body class="flex flex-col min-h-screen">
1010
<main class="flex-grow">
1111
{{- partial "header.html" . -}}
12-
<div class="scroll-top rounded-full">
13-
<span class="icon-keyboard_arrow_up text-2xl"></span>
14-
</div>
1512
{{- block "main" . }}{{- end }}
1613
</main>
1714
{{- partial "footer.html" . -}}

marketing/layouts/index.html

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
<body>
2020
{{- partial "alert.html" . -}}
2121
{{- partial "header.html" . -}}
22-
<div class="scroll-top rounded-full">
23-
<span class="icon-keyboard_arrow_up text-2xl"></span>
24-
</div>
2522
{{- partial "slide.html" . -}}
2623
{{- partial "strip.html" . -}}
2724
{{ if ne .Site.Params.showBlog false }}
@@ -30,25 +27,8 @@ <h2 class="text-4xl ml-2">Blog</h2>
3027
{{- partial "recent.html" . -}}
3128
</div>
3229
{{ end }}
30+
{{- partial "integrations.html" . -}}
3331
{{- partial "footer.html" . -}}
34-
<script src="{{ "/js/swiper-bundle.min.js" | relURL }}"></script>
35-
<script>
36-
var mySwiper = new Swiper(".swiper-container", {
37-
direction: "horizontal",
38-
loop: true,
39-
speed: 550,
40-
autoplay: {
41-
delay: 6000,
42-
},
43-
pagination: {
44-
el: ".swiper-pagination",
45-
},
46-
navigation: {
47-
nextEl: ".swiper-button-next",
48-
prevEl: ".swiper-button-prev",
49-
},
50-
});
51-
</script>
5232
</body>
5333

5434
</html>

marketing/layouts/partials/footer.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
{{ end }}
4444
<div class="flex items-center justify-between flex-wrap bg-gray-800 p-8 text-white">
4545
<div class="items-center text-xl text-grey-900 mr-6">
46-
{{ .Site.Params.site.name }}
46+
&copy; {{site.Title}} {{ now.Year }} All Rights Reserved.
4747
</div>
4848
<div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto" id="mobileMenu">
4949
<div class="text-lg lg:flex-grow">
@@ -61,9 +61,6 @@
6161
</div>
6262
</div>
6363
</div>
64-
<div class="copy pl-8 py-5 bg-tlgray-700 text-white text-md">
65-
&copy; {{site.Title}} {{ now.Year }} All Rights Reserved.
66-
</div>
6764
</footer>
6865

6966
{{ if hugo.IsProduction }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<div class="bg-tlgray-200 py-10 md:py-16">
2+
<div class="mx-auto max-w-6xl px-4">
3+
<h2 class="text-4xl mb-10 ml-2">Partners &amp; Integrations</h2>
4+
<div class="grid grid-cols-3 gap-6 md:gap-12 items-center opacity-70 my-12" style="display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));">
5+
{{ range .Site.Data.integrations }}
6+
<div class="flex justify-center items-center h-16 w-full">
7+
<a href="{{ .link }}" target="_blank" rel="noopener" title="{{ .name }}" class="block w-full h-full">
8+
<img src="{{ .img | relURL }}"
9+
alt="{{ .name }}"
10+
class="max-h-full max-w-full object-contain mx-auto p-4 transition-transform hover:scale-105"
11+
loading="lazy">
12+
</a>
13+
</div>
14+
{{ end }}
15+
</div>
16+
</div>
17+
</div>
17.2 KB
Loading
7.06 KB
Loading
11.9 KB
Loading
4.76 KB
Loading

0 commit comments

Comments
 (0)