@rk-web/create 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/create.d.ts +1 -1
- package/dist/create.d.ts.map +1 -1
- package/dist/create.js +59 -157
- package/dist/create.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +30 -1
- package/dist/index.js.map +1 -1
- package/package.json +8 -11
- package/templates/minimal/.editorconfig +12 -0
- package/templates/minimal/.gitignore +9 -0
- package/templates/minimal/.prettierrc +8 -0
- package/templates/minimal/README.md +37 -0
- package/templates/minimal/config.json +2 -5
- package/templates/minimal/eslint.config.js +14 -0
- package/templates/minimal/package.json +29 -0
- package/templates/minimal/src/assets/styles/main.css +7 -3
- package/templates/minimal/src/components/footer.html +1 -1
- package/templates/minimal/src/layouts/base.html +3 -3
- package/templates/minimal/src/pages/about.html +7 -0
- package/templates/minimal/src/pages/index.html +4 -6
- package/templates/minimal/src/scripts/main.ts +1 -1
- package/templates/minimal/tsconfig.json +15 -0
- package/templates/minimal/vite.config.ts +45 -0
- package/templates/landing/config.json +0 -28
- package/templates/landing/src/assets/styles/main.css +0 -474
- package/templates/landing/src/components/cta.html +0 -13
- package/templates/landing/src/components/features.html +0 -17
- package/templates/landing/src/components/footer.html +0 -18
- package/templates/landing/src/components/header.html +0 -11
- package/templates/landing/src/components/hero.html +0 -26
- package/templates/landing/src/components/pricing.html +0 -28
- package/templates/landing/src/components/testimonials.html +0 -24
- package/templates/landing/src/data/landing.json +0 -93
- package/templates/landing/src/layouts/base.html +0 -22
- package/templates/landing/src/pages/index.html +0 -12
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"features": [
|
|
3
|
-
{
|
|
4
|
-
"icon": "⚡",
|
|
5
|
-
"title": "Мгновенная настройка",
|
|
6
|
-
"description": "Начните работу за 5 минут. Без сложных конфигураций и долгого ожидания."
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"icon": "📊",
|
|
10
|
-
"title": "Аналитика в реальном времени",
|
|
11
|
-
"description": "Отслеживайте метрики и принимайте решения на основе актуальных данных."
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"icon": "🔒",
|
|
15
|
-
"title": "Безопасность данных",
|
|
16
|
-
"description": "Шифрование на уровне банка. Ваши данные под надежной защитой."
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"icon": "🔄",
|
|
20
|
-
"title": "Автоматизация процессов",
|
|
21
|
-
"description": "Настройте один раз — система работает за вас 24/7."
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"icon": "🤝",
|
|
25
|
-
"title": "Командная работа",
|
|
26
|
-
"description": "Приглашайте коллег, распределяйте роли и контролируйте доступ."
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"icon": "📱",
|
|
30
|
-
"title": "Мобильное приложение",
|
|
31
|
-
"description": "Управляйте бизнесом со смартфона. Доступно на iOS и Android."
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"testimonials": [
|
|
35
|
-
{
|
|
36
|
-
"name": "Алексей Петров",
|
|
37
|
-
"role": "CEO, TechStart",
|
|
38
|
-
"content": "Эта платформа изменила наш подход к работе. Конверсия выросла на 45% за первый месяц!"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"name": "Мария Сидорова",
|
|
42
|
-
"role": "Marketing Director, GrowthCo",
|
|
43
|
-
"content": "Простота использования поразила всю команду. Обучение заняло всего 30 минут."
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"name": "Дмитрий Козлов",
|
|
47
|
-
"role": "Founder, DigitalAgency",
|
|
48
|
-
"content": "Лучшее соотношение цены и качества. Поддержка отвечает моментально."
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
"pricing": [
|
|
52
|
-
{
|
|
53
|
-
"name": "Старт",
|
|
54
|
-
"price": "Бесплатно",
|
|
55
|
-
"period": "",
|
|
56
|
-
"features": [
|
|
57
|
-
"До 3 проектов",
|
|
58
|
-
"Базовая аналитика",
|
|
59
|
-
"1 пользователь",
|
|
60
|
-
"Email поддержка"
|
|
61
|
-
],
|
|
62
|
-
"featured": ""
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"name": "Про",
|
|
66
|
-
"price": "1990₽",
|
|
67
|
-
"period": "/мес",
|
|
68
|
-
"features": [
|
|
69
|
-
"До 20 проектов",
|
|
70
|
-
"Расширенная аналитика",
|
|
71
|
-
"До 5 пользователей",
|
|
72
|
-
"Приоритетная поддержка",
|
|
73
|
-
"API доступ",
|
|
74
|
-
"Кастомный домен"
|
|
75
|
-
],
|
|
76
|
-
"featured": " featured"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"name": "Бизнес",
|
|
80
|
-
"price": "5990₽",
|
|
81
|
-
"period": "/мес",
|
|
82
|
-
"features": [
|
|
83
|
-
"Безлимитные проекты",
|
|
84
|
-
"Полная аналитика",
|
|
85
|
-
"Безлимитные пользователи",
|
|
86
|
-
"Персональный менеджер",
|
|
87
|
-
"White label",
|
|
88
|
-
"SLA 99.9%"
|
|
89
|
-
],
|
|
90
|
-
"featured": ""
|
|
91
|
-
}
|
|
92
|
-
]
|
|
93
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="{{ site.lang }}">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>{{ site.title }}</title>
|
|
7
|
-
<meta name="description" content="{{ site.description }}">
|
|
8
|
-
|
|
9
|
-
<!-- SEO -->
|
|
10
|
-
<meta property="og:title" content="{{ site.title }}">
|
|
11
|
-
<meta property="og:description" content="{{ site.description }}">
|
|
12
|
-
<meta property="og:image" content="{{ seo.ogImage }}">
|
|
13
|
-
<meta property="og:type" content="{{ seo.ogType }}">
|
|
14
|
-
</head>
|
|
15
|
-
<body>
|
|
16
|
-
<!-- include: components/header.html -->
|
|
17
|
-
|
|
18
|
-
<!-- slot: content -->
|
|
19
|
-
|
|
20
|
-
<!-- include: components/footer.html -->
|
|
21
|
-
</body>
|
|
22
|
-
</html>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<!-- layout: layouts/base.html -->
|
|
2
|
-
|
|
3
|
-
<!-- slot: content -->
|
|
4
|
-
<main class="landing-page">
|
|
5
|
-
<!-- include: components/hero.html -->
|
|
6
|
-
<!-- include: components/features.html -->
|
|
7
|
-
<!-- include: components/testimonials.html -->
|
|
8
|
-
<!-- include: components/pricing.html -->
|
|
9
|
-
<!-- include: components/cta.html -->
|
|
10
|
-
</main>
|
|
11
|
-
|
|
12
|
-
<!-- data-define: landing = src/data/landing.json -->
|