forked from UKSOURCE/hailearning.edu.vn
feat: implement news details page with content and sidebar
This commit is contained in:
17
app/blog/[slug]/components/NewsDetailsSection.tsx
Normal file
17
app/blog/[slug]/components/NewsDetailsSection.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user