Files
Code-Create/src/pages/about-us/title.vue

32 lines
516 B
Vue
Raw Normal View History

2026-05-14 14:55:42 +08:00
<script setup lang="ts">
defineExpose({})
</script>
<template>
2026-05-14 15:31:34 +08:00
<section class="title-section">
<div class="content">
<div class="text">
<h1>ABOUT US</h1>
</div>
</div>
2026-05-14 14:55:42 +08:00
</section>
</template>
<style lang="less" scoped>
2026-05-14 15:31:34 +08:00
.title-section{
2026-05-14 14:55:42 +08:00
width: 100%;
2026-05-14 15:31:34 +08:00
> .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;
}
}
}
2026-05-14 14:55:42 +08:00
}
2026-05-15 16:41:52 +08:00
</style>