Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mySkill-x
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angular
mySkill-x
Commits
99b28799
Commit
99b28799
authored
Apr 03, 2025
by
Ooh-Ao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
หน้าจอประเมิน
parent
395ce776
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
1281 additions
and
3 deletions
+1281
-3
app.module.ts
src/app/app.module.ts
+3
-2
dashboard.module.ts
src/app/components/dashboard/dashboard.module.ts
+11
-1
pms-competency.component.html
...orm-employee/pms-competency/pms-competency.component.html
+1076
-0
pms-competency.component.scss
...orm-employee/pms-competency/pms-competency.component.scss
+0
-0
pms-competency.component.ts
...-form-employee/pms-competency/pms-competency.component.ts
+10
-0
pms-form-employee.component.html
...uation/pms-form-employee/pms-form-employee.component.html
+0
-0
pms-idp.component.html
...aluation/pms-form-employee/pms-idp/pms-idp.component.html
+1
-0
pms-idp.component.scss
...aluation/pms-form-employee/pms-idp/pms-idp.component.scss
+0
-0
pms-idp.component.ts
...evaluation/pms-form-employee/pms-idp/pms-idp.component.ts
+10
-0
pms-information.component.html
...m-employee/pms-information/pms-information.component.html
+138
-0
pms-information.component.scss
...m-employee/pms-information/pms-information.component.scss
+0
-0
pms-information.component.ts
...orm-employee/pms-information/pms-information.component.ts
+10
-0
pms-kpi.component.html
...aluation/pms-form-employee/pms-kpi/pms-kpi.component.html
+1
-0
pms-kpi.component.scss
...aluation/pms-form-employee/pms-kpi/pms-kpi.component.scss
+0
-0
pms-kpi.component.ts
...evaluation/pms-form-employee/pms-kpi/pms-kpi.component.ts
+10
-0
pms-summary.component.html
.../pms-form-employee/pms-summary/pms-summary.component.html
+1
-0
pms-summary.component.scss
.../pms-form-employee/pms-summary/pms-summary.component.scss
+0
-0
pms-summary.component.ts
...on/pms-form-employee/pms-summary/pms-summary.component.ts
+10
-0
No files found.
src/app/app.module.ts
View file @
99b28799
...
@@ -17,6 +17,7 @@ import { LeafletModule } from '@asymmetrik/ngx-leaflet';
...
@@ -17,6 +17,7 @@ import { LeafletModule } from '@asymmetrik/ngx-leaflet';
import
{
environment
}
from
'src/environments/environment'
;
import
{
environment
}
from
'src/environments/environment'
;
import
{
ColorPickerModule
}
from
'ngx-color-picker'
;
import
{
ColorPickerModule
}
from
'ngx-color-picker'
;
import
{
HttpClientModule
}
from
'@angular/common/http'
;
import
{
HttpClientModule
}
from
'@angular/common/http'
;
@
NgModule
({
@
NgModule
({
declarations
:
[
AppComponent
,
CustomLayoutComponent
,
ContentLayoutComponent
],
declarations
:
[
AppComponent
,
CustomLayoutComponent
,
ContentLayoutComponent
],
imports
:
[
imports
:
[
...
@@ -35,9 +36,9 @@ import { HttpClientModule } from '@angular/common/http';
...
@@ -35,9 +36,9 @@ import { HttpClientModule } from '@angular/common/http';
ColorPickerModule
,
ColorPickerModule
,
HttpClientModule
HttpClientModule
],
],
providers
:
[],
providers
:
[],
schemas
:
[
CUSTOM_ELEMENTS_SCHEMA
],
schemas
:
[
CUSTOM_ELEMENTS_SCHEMA
],
bootstrap
:
[
AppComponent
],
bootstrap
:
[
AppComponent
],
})
})
export
class
AppModule
{}
export
class
AppModule
{}
src/app/components/dashboard/dashboard.module.ts
View file @
99b28799
...
@@ -172,6 +172,11 @@ import { DatagridSyncfutionComponent } from '../datagrid-syncfution/datagrid-syn
...
@@ -172,6 +172,11 @@ import { DatagridSyncfutionComponent } from '../datagrid-syncfution/datagrid-syn
import
{
MatDialogModule
}
from
'@angular/material/dialog'
;
import
{
MatDialogModule
}
from
'@angular/material/dialog'
;
import
{
PmsFormEmployeeComponent
}
from
'../performance-evaluation/pms-form-employee/pms-form-employee.component'
;
import
{
PmsFormEmployeeComponent
}
from
'../performance-evaluation/pms-form-employee/pms-form-employee.component'
;
import
{
DpDatePickerModule
}
from
'ng2-date-picker'
;
import
{
DpDatePickerModule
}
from
'ng2-date-picker'
;
import
{
PmsInformationComponent
}
from
'../performance-evaluation/pms-form-employee/pms-information/pms-information.component'
;
import
{
PmsCompetencyComponent
}
from
'../performance-evaluation/pms-form-employee/pms-competency/pms-competency.component'
;
import
{
PmsKpiComponent
}
from
'../performance-evaluation/pms-form-employee/pms-kpi/pms-kpi.component'
;
import
{
PmsIdpComponent
}
from
'../performance-evaluation/pms-form-employee/pms-idp/pms-idp.component'
;
import
{
PmsSummaryComponent
}
from
'../performance-evaluation/pms-form-employee/pms-summary/pms-summary.component'
;
export
const
MY_DATE_FORMATS
=
{
export
const
MY_DATE_FORMATS
=
{
parse
:
{
parse
:
{
...
@@ -302,7 +307,12 @@ export class CustomDateAdapter extends NativeDateAdapter {
...
@@ -302,7 +307,12 @@ export class CustomDateAdapter extends NativeDateAdapter {
RolePermissionConfigComponent
,
RolePermissionConfigComponent
,
TimeAttendanceManageComponent
,
TimeAttendanceManageComponent
,
TimeAttendanceStatisticsComponent
,
TimeAttendanceStatisticsComponent
,
DatagridSyncfutionComponent
DatagridSyncfutionComponent
,
PmsInformationComponent
,
PmsCompetencyComponent
,
PmsKpiComponent
,
PmsIdpComponent
,
PmsSummaryComponent
],
],
imports
:
[
imports
:
[
CommonModule
,
CommonModule
,
...
...
src/app/components/performance-evaluation/pms-form-employee/pms-competency/pms-competency.component.html
0 → 100644
View file @
99b28799
<div
id=
"faq-1"
role=
"tabpanel"
aria-labelledby=
"faq-item-1"
>
<div
class=
"hs-accordion-group space-y-3"
>
<div
class=
"hs-accordion active bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-one"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-one"
>
How To Insert All The Plugins?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-one"
class=
"hs-accordion-content w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
"faq-one"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-two"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-two"
>
How Can I contact?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-two"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
"faq-two"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-three"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-three"
>
Can I use this Plugins in Another Template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-three"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-three"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-four"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-four"
>
Does it Easy to Customizable?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-four"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-four"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-five"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-five"
>
How Can I Add another page in Template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-five"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-five"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-six"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-six"
>
How can I download This template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-six"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-six"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-seven"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-seven"
>
How To Add additional plugins?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-seven"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-seven"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
</div>
</div>
<div
class=
"hidden"
id=
"faq-2"
role=
"tabpanel"
aria-labelledby=
"faq-item-2"
>
<div
class=
"hs-accordion-group space-y-3"
>
<div
class=
"hs-accordion active bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-21"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-21"
>
How To Insert All The Plugins?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-21"
class=
"hs-accordion-content w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
"faq-21"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-22"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-22"
>
How Can I contact?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-22"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
"faq-22"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-23"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-23"
>
Can I use this Plugins in Another Template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-23"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-23"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-24"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-24"
>
Does it Easy to Customizable?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-24"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-24"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-25"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-25"
>
How Can I Add another page in Template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-25"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-25"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-26"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-26"
>
How can I download This template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-26"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-26"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-27"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-27"
>
How To Add additional plugins?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-27"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-27"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
</div>
</div>
<div
class=
"hidden"
id=
"faq-3"
role=
"tabpanel"
aria-labelledby=
"faq-item-3"
>
<div
class=
"hs-accordion-group space-y-3"
>
<div
class=
"hs-accordion active bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-31"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-31"
>
How To Insert All The Plugins?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-31"
class=
"hs-accordion-content w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
"faq-31"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-32"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-32"
>
How Can I contact?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-32"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
"faq-32"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-33"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-33"
>
Can I use this Plugins in Another Template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-33"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-33"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-34"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-34"
>
Does it Easy to Customizable?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-34"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-34"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-35"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-35"
>
How Can I Add another page in Template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-35"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-35"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-36"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-36"
>
How can I download This template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-36"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-36"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-37"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-37"
>
How To Add additional plugins?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-37"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-37"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
</div>
</div>
<div
class=
"hidden"
id=
"faq-4"
role=
"tabpanel"
aria-labelledby=
"faq-item-4"
>
<div
class=
"hs-accordion-group space-y-3"
>
<div
class=
"hs-accordion active bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-41"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-41"
>
How To Insert All The Plugins?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-41"
class=
"hs-accordion-content w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
"faq-41"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-42"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-42"
>
How Can I contact?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-42"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
"faq-42"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-43"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-43"
>
Can I use this Plugins in Another Template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-43"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-43"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-44"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-44"
>
Does it Easy to Customizable?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-44"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-44"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-45"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-45"
>
How Can I Add another page in Template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-45"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-45"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-46"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-46"
>
How can I download This template?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-46"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-46"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
<div
class=
"hs-accordion bg-white border -mt-px rounded-sm dark:bg-bgdark dark:border-white/10"
id=
"faq-47"
>
<button
type=
"button"
class=
"hs-accordion-toggle hs-accordion-active:text-primary hs-accordion-active:border-b hs-accordion-active:border-gray-200 dark:hs-accordion-active:border-white/10 justify-between inline-flex items-center gap-x-3 w-full font-semibold text-start text-gray-800 transition py-4 px-5 hover:text-gray-500 dark:hs-accordion-active:text-primary dark:text-gray-200 dark:hover:text-white/80"
aria-controls=
"faq-collapse-47"
>
How To Add additional plugins?
<svg
class=
"hs-accordion-active:hidden hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary block w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
<path
d=
"M8 15.36L8 2.35999"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
<svg
class=
"hs-accordion-active:block hs-accordion-active:text-primary hs-accordion-active:group-hover:text-primary hidden w-3 h-3 text-gray-600 group-hover:text-gray-500 dark:text-white/70"
width=
"16"
height=
"16"
viewBox=
"0 0 16 16"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M1.5 8.85999L14.5 8.85998"
stroke=
"currentColor"
stroke-width=
"2"
stroke-linecap=
"round"
/>
</svg>
</button>
<div
id=
"faq-collapse-47"
class=
"hs-accordion-content hidden w-full overflow-hidden transition-[height] duration-300"
aria-labelledby=
" faq-47"
>
<div
class=
"p-5"
>
<p
class=
"text-gray-800 dark:text-gray-200"
>
I must explain to you how all this mistaken idea of
denouncing pleasure and praising pain was born and I
will give you a complete account of the system, and
expound the actual teachings of the great explorer of
the truth, the master-builder of human happiness. No one
rejects, dislikes, or avoids pleasure itself, because it
is pleasure, but because those who do not know how to
pursue pleasure rationally encounter consequences.
</p>
</div>
</div>
</div>
</div>
</div>
src/app/components/performance-evaluation/pms-form-employee/pms-competency/pms-competency.component.scss
0 → 100644
View file @
99b28799
src/app/components/performance-evaluation/pms-form-employee/pms-competency/pms-competency.component.ts
0 → 100644
View file @
99b28799
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-pms-competency'
,
templateUrl
:
'./pms-competency.component.html'
,
styleUrls
:
[
'./pms-competency.component.scss'
]
})
export
class
PmsCompetencyComponent
{
}
src/app/components/performance-evaluation/pms-form-employee/pms-form-employee.component.html
View file @
99b28799
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/app/components/performance-evaluation/pms-form-employee/pms-idp/pms-idp.component.html
0 → 100644
View file @
99b28799
<p>
pms-idp works!
</p>
src/app/components/performance-evaluation/pms-form-employee/pms-idp/pms-idp.component.scss
0 → 100644
View file @
99b28799
src/app/components/performance-evaluation/pms-form-employee/pms-idp/pms-idp.component.ts
0 → 100644
View file @
99b28799
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-pms-idp'
,
templateUrl
:
'./pms-idp.component.html'
,
styleUrls
:
[
'./pms-idp.component.scss'
]
})
export
class
PmsIdpComponent
{
}
src/app/components/performance-evaluation/pms-form-employee/pms-information/pms-information.component.html
0 → 100644
View file @
99b28799
<div
class=
"box"
>
<div
class=
"box-header"
>
<h5
class=
"box-title"
>
สถานะผู้ประเมิน
</h5>
</div>
<div
class=
"box-body"
>
<div
class=
"flex flex-row"
>
<div
class=
"mx-auto relative"
>
<div
class=
"h-full w-6 flex items-center justify-center"
>
<div
class=
"h-full w-[3px] bg-gray-100 dark:bg-black/20 pointer-events-none"
></div>
</div>
<div
class=
"avatar avatar-xs absolute top-0 rounded-full bg-gray-200 shadow text-center ltr:-left-[4px] rtl:-right-[4px]"
>
<img
src=
"./assets/img/users/21.jpg"
class=
"rounded-full"
alt=
"timeline-img"
/>
</div>
</div>
<div
class=
"flex w-full pb-8"
>
<div
class=
"ltr:ml-5 rtl:mr-5 rounded-sm ltr:mr-auto rtl:ml-auto my-auto w-full space-y-3"
>
<div
class=
"sm:flex"
>
<h3
class=
"my-auto text-gray-500 dark:text-white/70"
>
<span
class=
"text-dark dark:text-white"
>
Anesthesia
</span>
</h3>
<p
class=
"my-auto ltr:ml-auto rtl:mr-auto text-gray-500 dark:text-white/70 text-xs"
>
yesterday, 05:06 pm
</p>
</div>
<div
class=
"border border-gray-200 bg-gray-50 dark:bg-black/20 dark:border-white/10 p-4 rounded-sm"
>
<p
class=
"text-xs text-gray-500 dark:text-white/70"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Nostrum sit consequuntur quia aperiam quibusdam rerum ut! Id
ducimus nobis rerum modi veniam odit totam rem asperiores
adipisci, sed quia voluptas?
</p>
</div>
</div>
</div>
</div>
<div
class=
"flex flex-row"
>
<div
class=
"mx-auto relative"
>
<div
class=
"h-full w-6 flex items-center justify-center"
>
<div
class=
"h-full w-[3px] bg-gray-100 dark:bg-black/20 pointer-events-none"
></div>
</div>
<div
class=
"avatar avatar-xs absolute top-0 rounded-full bg-gray-200 shadow text-center ltr:-left-[4px] rtl:-right-[4px]"
>
<img
src=
"./assets/img/users/21.jpg"
class=
"rounded-full"
alt=
"timeline-img"
/>
</div>
</div>
<div
class=
"flex w-full pb-8"
>
<div
class=
"ltr:ml-5 rtl:mr-5 rounded-sm ltr:mr-auto rtl:ml-auto my-auto w-full space-y-3"
>
<div
class=
"sm:flex"
>
<h3
class=
"my-auto text-gray-500 dark:text-white/70"
>
<span
class=
"text-dark dark:text-white"
>
Anesthesia
</span>
</h3>
<p
class=
"my-auto ltr:ml-auto rtl:mr-auto text-gray-500 dark:text-white/70 text-xs"
>
yesterday, 05:06 pm
</p>
</div>
<div
class=
"border border-gray-200 bg-gray-50 dark:bg-black/20 dark:border-white/10 p-4 rounded-sm"
>
<p
class=
"text-xs text-gray-500 dark:text-white/70"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Nostrum sit consequuntur quia aperiam quibusdam rerum ut! Id
ducimus nobis rerum modi veniam odit totam rem asperiores
adipisci, sed quia voluptas?
</p>
</div>
</div>
</div>
</div>
<div
class=
"flex flex-row"
>
<div
class=
"mx-auto relative"
>
<div
class=
"h-full w-6 flex items-center justify-center"
>
<div
class=
"h-full w-[3px] bg-gray-100 dark:bg-black/20 pointer-events-none"
></div>
</div>
<div
class=
"avatar avatar-xs absolute top-0 rounded-full bg-gray-200 shadow text-center ltr:-left-[4px] rtl:-right-[4px]"
>
<img
src=
"./assets/img/users/21.jpg"
class=
"rounded-full"
alt=
"timeline-img"
/>
</div>
</div>
<div
class=
"flex w-full pb-8"
>
<div
class=
"ltr:ml-5 rtl:mr-5 rounded-sm ltr:mr-auto rtl:ml-auto my-auto w-full space-y-3"
>
<div
class=
"sm:flex"
>
<h3
class=
"my-auto text-gray-500 dark:text-white/70"
>
<span
class=
"text-dark dark:text-white"
>
Anesthesia
</span>
</h3>
<p
class=
"my-auto ltr:ml-auto rtl:mr-auto text-gray-500 dark:text-white/70 text-xs"
>
yesterday, 05:06 pm
</p>
</div>
<div
class=
"border border-gray-200 bg-gray-50 dark:bg-black/20 dark:border-white/10 p-4 rounded-sm"
>
<p
class=
"text-xs text-gray-500 dark:text-white/70"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Nostrum sit consequuntur quia aperiam quibusdam rerum ut! Id
ducimus nobis rerum modi veniam odit totam rem asperiores
adipisci, sed quia voluptas?
</p>
</div>
</div>
</div>
</div>
<div
class=
"flex flex-row"
>
<div
class=
"mx-auto relative"
>
<div
class=
"h-full w-6 flex items-center justify-center"
>
<div
class=
"h-full w-[3px] bg-gray-100 dark:bg-black/20 pointer-events-none"
></div>
</div>
<div
class=
"avatar avatar-xs absolute top-0 rounded-full bg-gray-200 shadow text-center ltr:-left-[4px] rtl:-right-[4px]"
>
<img
src=
"./assets/img/users/21.jpg"
class=
"rounded-full"
alt=
"timeline-img"
/>
</div>
</div>
<div
class=
"flex w-full pb-8"
>
<div
class=
"ltr:ml-5 rtl:mr-5 rounded-sm ltr:mr-auto rtl:ml-auto my-auto w-full space-y-3"
>
<div
class=
"sm:flex"
>
<h3
class=
"my-auto text-gray-500 dark:text-white/70"
>
<span
class=
"text-dark dark:text-white"
>
Anesthesia
</span>
</h3>
<p
class=
"my-auto ltr:ml-auto rtl:mr-auto text-gray-500 dark:text-white/70 text-xs"
>
yesterday, 05:06 pm
</p>
</div>
<div
class=
"border border-gray-200 bg-gray-50 dark:bg-black/20 dark:border-white/10 p-4 rounded-sm"
>
<p
class=
"text-xs text-gray-500 dark:text-white/70"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Nostrum sit consequuntur quia aperiam quibusdam rerum ut! Id
ducimus nobis rerum modi veniam odit totam rem asperiores
adipisci, sed quia voluptas?
</p>
</div>
</div>
</div>
</div>
</div>
</div>
src/app/components/performance-evaluation/pms-form-employee/pms-information/pms-information.component.scss
0 → 100644
View file @
99b28799
src/app/components/performance-evaluation/pms-form-employee/pms-information/pms-information.component.ts
0 → 100644
View file @
99b28799
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-pms-information'
,
templateUrl
:
'./pms-information.component.html'
,
styleUrls
:
[
'./pms-information.component.scss'
]
})
export
class
PmsInformationComponent
{
}
src/app/components/performance-evaluation/pms-form-employee/pms-kpi/pms-kpi.component.html
0 → 100644
View file @
99b28799
<p>
pms-kpi works!
</p>
src/app/components/performance-evaluation/pms-form-employee/pms-kpi/pms-kpi.component.scss
0 → 100644
View file @
99b28799
src/app/components/performance-evaluation/pms-form-employee/pms-kpi/pms-kpi.component.ts
0 → 100644
View file @
99b28799
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-pms-kpi'
,
templateUrl
:
'./pms-kpi.component.html'
,
styleUrls
:
[
'./pms-kpi.component.scss'
]
})
export
class
PmsKpiComponent
{
}
src/app/components/performance-evaluation/pms-form-employee/pms-summary/pms-summary.component.html
0 → 100644
View file @
99b28799
<p>
pms-summary works!
</p>
src/app/components/performance-evaluation/pms-form-employee/pms-summary/pms-summary.component.scss
0 → 100644
View file @
99b28799
src/app/components/performance-evaluation/pms-form-employee/pms-summary/pms-summary.component.ts
0 → 100644
View file @
99b28799
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-pms-summary'
,
templateUrl
:
'./pms-summary.component.html'
,
styleUrls
:
[
'./pms-summary.component.scss'
]
})
export
class
PmsSummaryComponent
{
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment