integrate login page wih api and keycloak

This commit is contained in:
Yusron alamsyah
2026-03-31 11:11:39 +07:00
parent acf491f8aa
commit d438fb0f5f
68 changed files with 1213 additions and 212 deletions
+40
View File
@@ -0,0 +1,40 @@
<template>
<v-row>
<v-col cols="12">
<SharedUiChildCard title="Banners">
<v-row>
<v-col cols="12">
<SharedUiChildCard title="Banner 2">
<widgets-banners-banner2 />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Banner 3">
<widgets-banners-banner3 />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Banner 4">
<widgets-banners-banner4 />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Banner 5">
<widgets-banners-banner5 />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Banner 6">
<widgets-banners-banner6 />
</SharedUiChildCard>
</v-col>
<v-col cols="12">
<SharedUiChildCard title="Welcome Card">
<widgets-banners-welcom-card />
</SharedUiChildCard>
</v-col>
</v-row>
</SharedUiChildCard>
</v-col>
</v-row>
</template>
+49
View File
@@ -0,0 +1,49 @@
<template>
<v-row>
<v-col cols="12">
<v-row>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Blog Cards</h2>
<widgets-cards-blog-cards />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Follower Cards</h2>
<widgets-cards-follower-cards />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Gift Cards</h2>
<widgets-cards-gift-cards />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Music Cards</h2>
<widgets-cards-music-cards />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Payment Gateways</h2>
<widgets-cards-payment-gateways />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Product Cards</h2>
<widgets-cards-product-cards />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Profile Cards</h2>
<widgets-cards-profile-cards />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Settings</h2>
<widgets-cards-settings />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Upcoming Activity Card</h2>
<widgets-cards-upcomming-activity-card />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">User Cards</h2>
<widgets-cards-user-cards />
</v-col>
</v-row>
<!-- </SharedUiChildCard> -->
</v-col>
</v-row>
</template>
+76
View File
@@ -0,0 +1,76 @@
<template>
<v-row>
<v-col cols="12">
<v-row>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Current Value</h2>
<widgets-charts-current-value />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Customer</h2>
<widgets-charts-customer />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Earned</h2>
<widgets-charts-earned />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Followers</h2>
<widgets-charts-followers />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Monthly Earnings</h2>
<widgets-charts-monthly-earnings />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Most Visited</h2>
<widgets-charts-most-visited />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Page Impression</h2>
<widgets-charts-page-impression />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Projects</h2>
<widgets-charts-projects />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Revenue Updates</h2>
<widgets-charts-revenue-updates />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Sales Overview</h2>
<widgets-charts-sales-overview />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Total Earning</h2>
<widgets-charts-total-earning />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Views</h2>
<widgets-charts-views />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Yearly Breakup</h2>
<widgets-charts-yearly-breakup />
</v-col>
<v-col cols="12" class="mb-6">
<h2 class="mb-4">Yearly Sales</h2>
<widgets-charts-yearly-sales />
</v-col>
</v-row>
</v-col>
</v-row>
</template>