This commit is contained in:
Nadar
2026-03-17 13:24:22 +03:00
commit 82e5ac9d81
554 changed files with 29637 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<template>
<div class="project-create">
<img src="/flag.svg" class="mb-40">
<i18n-t scope="global" keypath="create_your_project.title" tag="h2">
<span class="text-clr-cyan-500">
{{ $t('create_your_project.create') }}
</span>
</i18n-t>
<h4 class="project-create__text">
{{ $t('create_your_project.content') }}
</h4>
<UiButton size="large" class="mt-40 w-100" href="/projects/create">
{{ $t('create') }}
</UiButton>
</div>
</template>
<style lang="scss">
.project-create {
display: flex;
align-items: center;
flex-direction: column;
width: 422px;
align-self: center;
justify-self: center;
&__text {
color: $clr-grey-400;
margin-top: 8px;
}
}
</style>