lightlimx-website/components/StartUpBlock/index.vue

73 lines
2.3 KiB
Vue

<template>
<div class="startup-block">
<h2 class="startup-block-h2 wow fadeInUp" data-wow-delay=".3s">
Accelerator Your Startup
</h2>
<p class="startup-block-p wow fadeInUp" data-wow-delay=".3s">Investing Beyond Investment. From aspiring founders to early stage entrepreneurs,LightLimX are dedicated to creating a thriving atmosphere for all pioneers within our ecosystem.</p>
<small class="startup-block-small wow fadeInUp" data-wow-delay=".3s">As serial entrepreneurs, we know what it takes to build innovative businesses from scratch in the difficult markets of Crypto,and we have built a team of 40+ experts, including economists, quants, developers, lawyers, UX experts, and more to provide active investor side support through mentorship and network integration. We know the landscape and keep up with the latest developments.Therefore, we can guide teams when it comes to ideation, tokenomics, and communication.We strive to leverage our experience to help ventures grow from Seed Stage to later round of capital and maximise their value creation.The blockchain world is moving fast,and we help you move faster.</small>
</div>
</template>
<script>
export default {
name: "StartupBlock"
}
</script>
<style scoped lang="less">
.startup-block{
&-h2{
padding-top: 1.83rem;
max-width:8.12rem;
margin: 0 auto;
font-size: .76rem;
font-family: Manrope;
font-weight: bold;
line-height: 1.1rem;
color: #FFFFFF;
text-align: center;
}
&-p{
max-width: 6.34rem;
text-align: center;
margin: 0 auto;
margin-top: 1rem;
font-size: .24rem;
font-family: Manrope;
font-weight: bold;
line-height: .44rem;
color: #FFFFFF;
}
&-small{
display: block;
margin-top: .54rem;
text-align: center;
font-size: .14rem;
font-family: Manrope;
font-weight: 400;
line-height: .28rem;
color: #9B9B9B;
}
}
@media screen and (max-width: 768px) {
.startup-block{
&-h2{
padding-top: 1.6rem;
max-width:6.12rem;
font-size: .6rem;
line-height: 1;
}
&-p{
max-width: 6.9rem;
margin-top: 1.77rem;
font-size: .24rem;
line-height: .4rem;
}
&-small{
margin-top: 2.26rem;
font-size: .24rem;
line-height: .34rem;
}
}
}
</style>