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

41 lines
943 B
Vue
Raw Normal View History

2026-05-14 14:55:42 +08:00
<script setup lang="ts">
2026-06-02 13:23:41 +08:00
import { computed } from 'vue'
2026-05-14 15:31:34 +08:00
import Ecosystem from './ecosystem.vue'
import Title from './title.vue'
2026-05-18 11:33:26 +08:00
import Mission from './mission.vue'
import OurTeam from './our-team.vue'
2026-05-18 13:57:05 +08:00
import StrategicPartners from './strategic-partners.vue'
2026-06-02 13:23:41 +08:00
import { useGlobalStore } from '@/stores/global'
const globalStore = useGlobalStore()
const windowWidth = computed(() => globalStore.state.windowWidth)
2026-05-14 14:55:42 +08:00
defineExpose({})
</script>
<template>
2026-05-14 15:31:34 +08:00
<div class="about-us">
2026-06-02 13:23:41 +08:00
<div class="bg" v-show="windowWidth > 1000">
2026-06-03 14:21:11 +08:00
<img src="https://s3.ap-east-1.amazonaws.com/code-create.com.hk/2022/12/about_banner-1.jpg" alt="">
2026-05-14 15:31:34 +08:00
</div>
<Title />
<Ecosystem />
2026-05-18 11:33:26 +08:00
<Mission />
<OurTeam />
2026-05-18 13:57:05 +08:00
<StrategicPartners />
2026-05-14 14:55:42 +08:00
</div>
</template>
<style lang="less" scoped>
2026-05-14 15:31:34 +08:00
.about-us{
2026-05-14 14:55:42 +08:00
width: 100%;
height: 100%;
position: relative;
2026-05-14 15:31:34 +08:00
> .bg{
width: 100%;
position: fixed;
z-index: -1;
top: 0;
> img{
width: 100%;
}
}
2026-05-14 14:55:42 +08:00
}
2026-05-15 16:41:52 +08:00
</style>