forked from UKSOURCE/hailearning.edu.vn
feat: implement news details page with content and sidebar
This commit is contained in:
17
app/blog/[slug]/page.tsx
Normal file
17
app/blog/[slug]/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import Breadcrumb from "@/app/components/Breadcrumb";
|
||||
import NewsDetailsSection from "./components/NewsDetailsSection";
|
||||
|
||||
interface BlogDetailsPageProps {
|
||||
params: {
|
||||
slug: string;
|
||||
};
|
||||
}
|
||||
|
||||
export default function BlogDetailsPage(_props: BlogDetailsPageProps) {
|
||||
return (
|
||||
<>
|
||||
<Breadcrumb title="Blog Details" current="Blog Details" />
|
||||
<NewsDetailsSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user