blob: d580aa0be4f8e9192f89dfc854ef6faa32babe6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
Flickable {
property alias header: header
property alias counter: counter
property alias popular: popular
contentHeight: body.height
ColumnLayout {
id: body
anchors {
top: parent.top
left: parent.left
right: parent.right
}
Header {
id: header
Layout.fillWidth: true
}
Item {
implicitHeight: banner.height + counter.height
+ popular.height
Layout.fillWidth: true
GridLayout {
id: banner
columns: width < 992 ? 1 : 2
rows: width < 992 ? 2 : 1
anchors {
top: parent.top
topMargin: 48
left: parent.left
leftMargin: 51.28
right: parent.right
rightMargin: 51.28
}
ColumnLayout {
FontLoader {
id: heebo
source: "Heebo/Heebo-Bold.ttf"
}
Label {
text: qsTr("Limitless learning at your fingertips")
color: "#24292d"
horizontalAlignment: Text.AlignHCenter
wrapMode: Text.Wrap
Layout.fillWidth: true
font.family: heebo.name
font.pixelSize: 24
}
Label {
text: qsTr("Online learning and teaching marketplace with 5K+ courses & 10M students. Taught by experts to help you acquire new skills.")
color: "#747579"
horizontalAlignment: Text.AlignHCenter
wrapMode: Text.Wrap
Layout.fillWidth: true
font.family: "Roboto"
font.pixelSize: 19
}
}
ColumnLayout {
Layout.topMargin: 48
Layout.leftMargin: 24
Layout.rightMargin: 24
Image {
id: image
source: "https://eduport.webestica.com/assets/images/element/07.png"
fillMode: Image.PreserveAspectFit
Layout.fillWidth: true
}
}
}
GridView {
id: counter
interactive: false
cellWidth: width < 576 ? width
: width < 1200 ? width / 2
: width / 4
cellHeight: 125.6
height: width < 576 ? cellHeight * count
: width < 1200 ? cellHeight * count / 2
: cellHeight
anchors {
top: banner.bottom
left: parent.left
right: parent.right
}
model: ListModel {
ListElement {
icon: "Font-Awesome/svgs/solid/tv.svg"
count: "10K"
title: qsTr("Online Courses")
bgColor: "#26f7c32e"
}
ListElement {
icon: "Font-Awesome/svgs/solid/user-tie.svg"
count: "200+"
title: qsTr("Expert Tutors")
bgColor: "#1a1d3b53"
}
ListElement {
icon: "Font-Awesome/svgs/solid/user-graduate.svg"
count: "60K+"
title: qsTr("Online Students")
bgColor: "#1a6f42c1"
}
ListElement {
icon: "Bootstrap/icons/patch-check-fill.svg"
count: "6K+"
title: qsTr("Certified Courses")
bgColor: "#1a17a2b8"
}
}
}
GridView {
id: popular
interactive: false
cellWidth: width < 576 ? width
: width < 768 ? width / 2
: width < 992 ? width / 3
: width / 4
cellHeight: cellWidth * 1.3
height: width < 576
? cellHeight * count
: width < 768
? cellHeight * (count + count % 2) / 2
: width < 992
? cellHeight * (count + (count + 1) % 3) / 3
: cellHeight * (count + (count + 2) % 4) / 4
anchors {
top: counter.bottom
left: parent.left
right: parent.right
}
}
}
}
}
|