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

@@ -0,0 +1,17 @@
import NewsDetailsContent from "./NewsDetailsContent";
import Sidebar from "@/app/blog/components/Sidebar";
export default function NewsDetailsSection() {
return (
<section className="news-standard-section section-padding fix">
<div className="container">
<div className="news-details-wrapper">
<div className="row g-4">
<NewsDetailsContent />
<Sidebar />
</div>
</div>
</div>
</section>
);
}