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

45 lines
843 B
Vue
Raw Normal View History

2026-05-14 14:55:42 +08:00
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
import { gsap, TweenMax, TweenLite } from 'gsap'
import { ScrollTrigger } from 'gsap/ScrollTrigger'
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
})
onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
</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
}
</style>