ADD: Customers
This commit is contained in:
parent
8d282499bd
commit
1137cec1c1
10 changed files with 58 additions and 9 deletions
30
components/Customers/Customers.vue
Normal file
30
components/Customers/Customers.vue
Normal file
|
@ -0,0 +1,30 @@
|
|||
<style scoped src="./Customers.css"/>
|
||||
|
||||
<template>
|
||||
<section class="Customers content">
|
||||
<h2>Kunden <span class="highlight">&</span> Projekte</h2>
|
||||
<h3>Meine bisherigen Geschäftpartner</h3>
|
||||
<div class="customer-list">
|
||||
<a v-for="customer in customers" :href="customer.link" target="_blank" rel="noopener noreferrer">
|
||||
<img :alt="customer.name" :src="customer.logo" :class="[customer.white && 'white']" />
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
const customers = [
|
||||
{
|
||||
name: 'Dekra',
|
||||
logo: '/img/customers/dekra.png',
|
||||
link: 'https://dekra.de'
|
||||
}, {
|
||||
name: 'Bounce Commerce',
|
||||
logo: '/img/customers/bounce.png',
|
||||
link: 'https://bounce-commerce.de',
|
||||
white: true,
|
||||
}
|
||||
]
|
||||
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue