Миграция документов: добавлен шаг 8 в setup-instruction.md
This commit is contained in:
@@ -301,9 +301,9 @@ const routes = [
|
|||||||
component: () => import('../views/ConnectWalletView.vue')
|
component: () => import('../views/ConnectWalletView.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/accelerator/registration',
|
path: '/groups',
|
||||||
name: 'accelerator-registration',
|
name: 'groups',
|
||||||
component: () => import('../views/accelerator/AcceleratorRegistrationView.vue')
|
component: () => import('../views/groups/GroupsView.vue')
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -69,8 +69,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="management-block">
|
<div class="management-block">
|
||||||
<h3>Акселератор</h3>
|
<h3>Группы</h3>
|
||||||
<p>Регистрация и управление проектами</p>
|
<p>Создание и управление</p>
|
||||||
<button class="details-btn" @click="goToAcceleratorRegistration">Подробнее</button>
|
<button class="details-btn" @click="goToAcceleratorRegistration">Подробнее</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -266,7 +266,7 @@ function goToWeb3App() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function goToAcceleratorRegistration() {
|
function goToAcceleratorRegistration() {
|
||||||
router.push({ name: 'accelerator-registration' });
|
router.push({ name: 'groups' });
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,11 @@
|
|||||||
:is-loading-tokens="isLoadingTokens"
|
:is-loading-tokens="isLoadingTokens"
|
||||||
@auth-action-completed="$emit('auth-action-completed')"
|
@auth-action-completed="$emit('auth-action-completed')"
|
||||||
>
|
>
|
||||||
<div class="accelerator-registration-container">
|
<div class="groups-container">
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h1>Программы акселератора HB3</h1>
|
<h1>Группы</h1>
|
||||||
<p class="page-description">
|
<p class="page-description">
|
||||||
Выберите подходящую программу для развития вашего бизнеса
|
Создание и управление группами
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -173,7 +173,7 @@ const goBack = () => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.accelerator-registration-container {
|
.groups-container {
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
@@ -335,7 +335,7 @@ const goBack = () => {
|
|||||||
|
|
||||||
/* Адаптивность */
|
/* Адаптивность */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.accelerator-registration-container {
|
.groups-container {
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user