59 lines
1.4 KiB
Vue
59 lines
1.4 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
|
|
//const props = defineProps({
|
|
//})
|
|
//const emit = defineEmits([
|
|
//])
|
|
let data = reactive({
|
|
})
|
|
onMounted(()=>{
|
|
})
|
|
onUnmounted(()=>{
|
|
})
|
|
defineExpose({})
|
|
const {} = toRefs(data);
|
|
</script>
|
|
<template>
|
|
<div class="joinUs">
|
|
<div class="title">Join Our Designer Community</div>
|
|
<div class="info">
|
|
<div>
|
|
Join our community of visionaries and publish your collection story.
|
|
</div>
|
|
<div>
|
|
We are currently seeking collections that deeply integrate the AiDA creative workflow, specifically those that resonate through powerful core concepts and evocative inspiration.
|
|
</div>
|
|
<br />
|
|
<div>
|
|
This architecture is designed to elevate your exposure through profound "propositional expression," ensuring that soulful, story-driven designs achieve higher market premiums and superior sales conversion.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<style lang="less" scoped>
|
|
.joinUs{
|
|
width: 100%;
|
|
height: auto;
|
|
position: relative;
|
|
padding: 6rem 0;
|
|
> .title{
|
|
padding: 0 2.4rem;
|
|
font-family: "KaiseiOpti-Bold";
|
|
font-weight: 700;
|
|
font-size: 3rem;
|
|
line-height: 100%;
|
|
margin-bottom: 6rem;
|
|
}
|
|
> .info{
|
|
width: 70.7rem;
|
|
margin: 0 auto;
|
|
margin-bottom: 4rem;
|
|
> div{
|
|
font-family: "KaiseiOpti-Regular";
|
|
font-weight: 400;
|
|
font-size: 1.6rem;
|
|
line-height: 2.3rem;
|
|
}
|
|
}
|
|
}
|
|
</style> |