-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from karelmaxa/partners
Add section with partners.
- Loading branch information
Showing
12 changed files
with
90 additions
and
67 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 was deleted.
Oops, something went wrong.
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,44 @@ | ||
<script setup lang="ts"> | ||
import { withBase } from 'vitepress'; | ||
import type { Partner } from '../../types/partner'; | ||
defineProps({ | ||
data: { type: Array<Partner>, required: true }, | ||
}); | ||
</script> | ||
|
||
<template> | ||
<p class="partner-container"> | ||
<a | ||
v-for="partner of data" | ||
:key="partner.name" | ||
:href="partner.url" | ||
target="_blank" | ||
class="partner-item" | ||
> | ||
<img :src="withBase('partner/' + partner.logo)"> | ||
</a> | ||
</p> | ||
</template> | ||
|
||
<style scoped> | ||
.partner-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
row-gap: 10px; | ||
} | ||
.partner-item { | ||
display: flex; | ||
align-items: center; | ||
max-width: 33%; | ||
min-width: 180px; | ||
padding: 20px; | ||
box-sizing: border-box; | ||
} | ||
.partner-item > img { | ||
max-height: 50px; | ||
margin: auto; | ||
} | ||
</style> |
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,5 @@ | ||
export interface Partner { | ||
name: string, | ||
url: string, | ||
logo: string, | ||
} |
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,37 @@ | ||
--- | ||
title: Partners | ||
sidebar: false | ||
--- | ||
|
||
<script setup> | ||
const certPartners = [ | ||
{ name: 'orchitech', url: 'https://orchi.tech/en/', logo: 'orchitech.png' } | ||
]; | ||
const implPartners = [ | ||
{ name: 'orchitech', url: 'https://orchi.tech/en/', logo: 'orchitech.png' }, | ||
{ name: 'j3ag', url: 'https://www.j3ag.cz/', logo: 'j3ag.png' }, | ||
{ name: 'sonpo', url: 'https://www.sonpo.cz/en/', logo: 'sonpo.png' }, | ||
{ name: 'systemboost', url: 'https://www.system-boost.cz/en/', logo: 'systemboost.png' }, | ||
]; | ||
const infraPartners = [ | ||
{ name: 'jfrog', url: 'https://jfrog.com/artifactory/', logo: 'jfrog-artifactory.png' }, | ||
]; | ||
</script> | ||
|
||
# Partners | ||
|
||
The following is a list of Wren Security partners. | ||
Partners are listed in no particular order within each section. | ||
|
||
|
||
### Authorized certifying partner | ||
|
||
<Partners :data="certPartners" /> | ||
|
||
### Implementation partners | ||
|
||
<Partners :data="implPartners" /> | ||
|
||
### Infrastructure partners | ||
|
||
<Partners :data="infraPartners" /> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.