56 lines
2.2 KiB
TypeScript
56 lines
2.2 KiB
TypeScript
|
|
/**
|
||
|
|
* @file landing.ts
|
||
|
|
* @description Static data for the landing page.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export const CATEGORY_CARDS = [
|
||
|
|
{
|
||
|
|
title: 'โปรแกรมมิ่ง',
|
||
|
|
desc: 'เชี่ยวชาญการเขียนโค้ดและพัฒนาซอฟต์แวร์',
|
||
|
|
icon: 'code',
|
||
|
|
slug: 'programming',
|
||
|
|
iconColor: 'text-blue-600',
|
||
|
|
iconBg: 'bg-blue-600/5'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'การออกแบบ',
|
||
|
|
desc: 'ทักษะ UI/UX และการออกแบบระดับมือโปร',
|
||
|
|
icon: 'palette',
|
||
|
|
slug: 'design',
|
||
|
|
iconColor: 'text-indigo-600',
|
||
|
|
iconBg: 'bg-indigo-600/5'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'ธุรกิจ',
|
||
|
|
desc: 'ทักษะการจัดการและความเป็นผู้นำสากล',
|
||
|
|
icon: 'business_center',
|
||
|
|
slug: 'business',
|
||
|
|
iconColor: 'text-blue-700',
|
||
|
|
iconBg: 'bg-blue-700/5'
|
||
|
|
}
|
||
|
|
]
|
||
|
|
|
||
|
|
export const WHY_CHOOSE_US = [
|
||
|
|
{
|
||
|
|
title: 'ผู้สอนเชี่ยวชาญ',
|
||
|
|
desc: 'เรียนรู้จากผู้นำในอุตสาหกรรมที่มีประสบการณ์การทำงานหลายปีในบริษัทเทคโนโลยีชั้นนำระดับโลก',
|
||
|
|
icon: 'groups',
|
||
|
|
iconBg: 'bg-blue-600/10',
|
||
|
|
iconColor: 'text-blue-600'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'การเรียนรู้ที่ยืดหยุ่น',
|
||
|
|
desc: 'เรียนตามจังหวะของคุณเอง ได้ทุกที่ทุกเวลา เข้าถึงเนื้อหาคอร์สที่สมัครเรียนได้ตลอดชีพ',
|
||
|
|
icon: 'schedule',
|
||
|
|
iconBg: 'bg-indigo-600/10',
|
||
|
|
iconColor: 'text-indigo-600'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'ประกาศนียบัตรเมื่อเรียนจบ',
|
||
|
|
desc: 'รับวุฒิบัตรที่เป็นที่ยอมรับเพื่อเสริมพอร์ตโฟลิโอระดับมืออาชีพของคุณและแชร์ลง LinkedIn ได้โดยตรง',
|
||
|
|
icon: 'verified',
|
||
|
|
iconBg: 'bg-blue-600/10',
|
||
|
|
iconColor: 'text-blue-600'
|
||
|
|
}
|
||
|
|
]
|