From 2e57ff6808813338ff373155df37d1c5cd09e797 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?=
 =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?=
 <erik@darapsa.co.id>
Date: Thu, 23 Mar 2023 10:58:11 +0800
Subject: Not used any more

---
 MostPopularWithTab.ui.qml | 82 -----------------------------------------------
 1 file changed, 82 deletions(-)
 delete mode 100644 MostPopularWithTab.ui.qml

diff --git a/MostPopularWithTab.ui.qml b/MostPopularWithTab.ui.qml
deleted file mode 100644
index e9be112..0000000
--- a/MostPopularWithTab.ui.qml
+++ /dev/null
@@ -1,82 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-
-ColumnLayout {
-	spacing: 8
-	FontLoader {
-		id: roboto
-		source: doesntEmbed ? ""
-		: "Roboto/Roboto-Medium.ttf"
-	}
-
-	Label {
-		text: qsTr("Most Popular Courses")
-		color: "#24292d"
-		horizontalAlignment: Text.AlignHCenter
-		wrapMode: Text.Wrap
-		Layout.fillWidth: true
-		font {
-			family: doesntEmbed
-			? "Roboto"
-			: roboto.name
-			pointSize: 44
-		}
-	}
-
-	Label {
-		text: qsTr("Choose from hundreds of courses from specialist organizations")
-		color: "#747579"
-		horizontalAlignment: Text.AlignHCenter
-		wrapMode: Text.Wrap
-		Layout.fillWidth: true
-		font {
-			family: doesntEmbed
-			? "Roboto"
-			: roboto.name
-			pointSize: 14
-		}
-	}
-	TabBar {
-		background: Rectangle{
-			color: "#1a066ac9"
-			radius: 8
-		}
-		Layout.fillWidth: true
-		implicitHeight: 58
-		Layout.margins: 16
-		padding: 16
-		TabButton {
-			text: qsTr("First")
-			anchors.verticalCenter: parent.verticalCenter
-			Layout.fillWidth: true
-			Layout.leftMargin: 16
-			background: Rectangle {
-				radius: 8
-			}
-		}
-		TabButton {
-			text: qsTr("Second")
-			anchors.verticalCenter: parent.verticalCenter
-			Layout.fillWidth: true
-			background: Rectangle {
-				radius: 8
-			}
-
-		}
-		TabButton {
-			text: qsTr("Third")
-			anchors.verticalCenter: parent.verticalCenter
-			Layout.fillWidth: true
-			background: Rectangle {
-				radius: 8
-			}
-			contentItem: Text {
-				color: "#000000"
-				text: "Third"
-				horizontalAlignment: Text.AlignHCenter
-				verticalAlignment: Text.AlignVCenter
-			}
-		}
-	}
-}
-- 
cgit v1.2.3