-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6dd4d42
commit d1aa9fa
Showing
11 changed files
with
185 additions
and
64 deletions.
There are no files selected for viewing
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import Link from "next/link"; | ||
|
||
export default function News({ image, title, description, href }: { image: string; title: string; description: string; href: string; }) { | ||
return ( | ||
<div className="bg-white rounded-xl overflow-hidden shadow-lg"> | ||
<img src={image} alt="news_1" /> | ||
<div className="p-4"> | ||
<h1 className="font-semibold"> | ||
{title} | ||
</h1> | ||
<p className="truncate text-sm text-black/60 mb-4"> | ||
{description} | ||
</p> | ||
<Link | ||
href={href} | ||
className="bg-blue-100 text-blue-500 text-sm px-4 py-1 rounded-lg transition active:scale-95" | ||
> | ||
<i className="far fa-chevron-right"></i> อ่านเพิ่มเติม | ||
</Link> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
export default function TrickPage() { | ||
return ( | ||
<div className="text-white"> | ||
<h1 className="pt-32 text-4xl font-semibold mb-8"> | ||
5 ทริคเก็บเงินวัยเรียนให้มีเงินก่อนเรียนจบ | ||
</h1> | ||
<p className="text-black"> | ||
สำหรับน้อง ๆ ที่อยากมีเงินก้อนก่อนเรียนจบ | ||
ไม่ว่าจะเพื่อเดินทางท่องเที่ยว หาประสบการณ์ | ||
หรือเริ่มต้นชีวิตวัยทำงานอย่างมั่นใจ นี่คือ 5 | ||
ทริคที่จะช่วยให้น้อง ๆ เก็บเงินได้ง่ายขึ้น | ||
พร้อมกับเสริมสร้างวินัยในการออมเงิน: | ||
<br /> | ||
<br /> | ||
<span className="font-semibold"> | ||
1{")"}. ตั้งเป้าหมายการออม: | ||
</span>{" "} | ||
กำหนดจำนวนเงินที่ต้องการเก็บ และระยะเวลาที่ต้องการ | ||
<br /> | ||
<br /> | ||
<span className="font-semibold">2{")"}. ทำงานพิเศษ:</span> | ||
หางานพาร์ทไทม์หรือทำงานเสริมเพื่อเพิ่มรายได้ | ||
<br /> | ||
<br /> | ||
<span className="font-semibold"> | ||
3{")"}. บันทึกรายรับรายจ่าย: | ||
</span>{" "} | ||
จดบันทึกรายรับรายจ่ายทุกวัน เพื่อรู้ว่ามีเงินเข้าหรือออกเท่าไหร่ | ||
<br /> | ||
<br /> | ||
<span className="font-semibold"> | ||
4{")"}. ตัดค่าใช้จ่ายที่ไม่จำเป็น: | ||
</span>{" "} | ||
ลดค่าใช้จ่ายที่ไม่จำเป็น เช่น การซื้อของฟุ่มเฟือย | ||
<br /> | ||
<br /> | ||
<span className="font-semibold"> | ||
5{")"}. ออมเงินอย่างสม่ำเสมอ: | ||
</span>{" "} | ||
นำเงินมาออมสม่ำเสมอกับเว็บไซต์ Piggy pocket | ||
</p> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters