32 lines
516 B
Vue
32 lines
516 B
Vue
<script setup lang="ts">
|
|
defineExpose({})
|
|
</script>
|
|
<template>
|
|
<section class="title-section">
|
|
<div class="content">
|
|
<div class="text">
|
|
<h1>ABOUT US</h1>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
<style lang="less" scoped>
|
|
.title-section{
|
|
width: 100%;
|
|
> .content{
|
|
max-width: 1400;
|
|
> .text{
|
|
padding: 200px 300px;
|
|
> h1{
|
|
text-align: center;
|
|
font-size: 64px;
|
|
font-weight: 600;
|
|
line-height: 64px;
|
|
letter-spacing: 2px;
|
|
color: #FFFFFF;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|