featL Add news page

This commit is contained in:
Wini_Fy
2026-02-02 13:41:45 +07:00
parent 426749c480
commit 52c7395353
162 changed files with 319 additions and 31751 deletions

View File

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