You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
616 B
Vue

<script setup>
import TecOne from "@/components/technology/tecOne.vue";
import TecTwo from "@/components/technology/tecTwo.vue";
import TecThree from "@/components/technology/tecThree.vue";
import TecFour from "@/components/technology/tecFour.vue";
import TecFive from "@/components/technology/tecFive.vue";
</script>
<template>
<div class="header">
<img src="@/assets/img/tc-top.png" alt="">
</div>
<tec-one/>
<tec-two/>
<tec-three/>
<tec-four/>
<tec-five/>
</template>
<style scoped lang="less">
.header{
height: 618px;
img{
width:100%;
height: 100%;
object-fit: cover;
}
}
</style>