37 lines
606 B
Vue
37 lines
606 B
Vue
<template>
|
|
<section class="certifications">
|
|
<header class="header">
|
|
<h2 class="title">{{ $t('certifications.title') }}</h2>
|
|
</header>
|
|
<div class="content">
|
|
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.header {
|
|
background-color: #000;
|
|
color: #fff;
|
|
text-align: center;
|
|
padding: 72px 0 76px;
|
|
}
|
|
h2.title {
|
|
font-size: 54px;
|
|
font-weight: 400;
|
|
line-height: 63.28px;
|
|
}
|
|
|
|
.content {
|
|
height: 600px;
|
|
background-image: url('@images/bg_1.png');
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
</style> |