feat: implement news details page with content and sidebar

This commit is contained in:
Wini_Fy
2026-02-02 17:02:22 +07:00
parent 52c7395353
commit 0de69cb4d0
13 changed files with 392 additions and 59 deletions

View File

@@ -1,3 +1,5 @@
import Link from "next/link";
export default function NewsList() {
return (
<div className="col-lg-8 col-12">
@@ -19,14 +21,14 @@ export default function NewsList() {
</li>
</ul>
<h3>
<a href="/news-details">How to Avoid Common Mistakes in Visa Applications</a>
<Link href="/news-details">How to Avoid Common Mistakes in Visa Applications</Link>
</h3>
<p>
A business consultant provides expert guidance, strategic planning, and problem-solving supporthelping startups avoid mistakes, grow faster, and operate more efficiently from day one.
</p>
<a href="/news-details" className="theme-btn">
<Link href="/blog/news-details" className="theme-btn">
VIEW MORE <i className="fa-solid fa-arrow-right"></i>
</a>
</Link>
</div>
</div>
{/* News Post 2 */}
@@ -47,14 +49,14 @@ export default function NewsList() {
</li>
</ul>
<h3>
<a href="/news-details">The Role of Immigration Consultants in Your Journey</a>
<Link href="/news-details">The Role of Immigration Consultants in Your Journey</Link>
</h3>
<p>
Immigration consultants play a vital role in guiding applicants, simplifying complex processes, offering expert advice, and ensuring successful outcomes for study, work, or permanent residency abroad.
</p>
<a href="/news-details" className="theme-btn">
<Link href="/blog/news-details" className="theme-btn">
VIEW MORE <i className="fa-solid fa-arrow-right"></i>
</a>
</Link>
</div>
</div>
{/* News Post 3 */}
@@ -75,14 +77,14 @@ export default function NewsList() {
</li>
</ul>
<h3>
<a href="/news-details">Latest Immigration Policy Updates You Should Know</a>
<Link href="/news-details">Latest Immigration Policy Updates You Should Know</Link>
</h3>
<p>
Stay informed with the latest immigration policy updates, ensuring you understand new rules, visa requirements, and opportunities that impact your study, work, or migration journey abroad.
</p>
<a href="/news-details" className="theme-btn">
<Link href="/blog/news-details" className="theme-btn">
VIEW MORE <i className="fa-solid fa-arrow-right"></i>
</a>
</Link>
</div>
</div>
</div>