import ArticleWithBreadcrumb from "@/app/_components/ArticleWithBreadcrumb"; import ArticleRender from "@/app/_components/ArticleRender"; import { articleDetail } from "@/app/_services/articles"; const Page = async ({ params, }: { params: { articleId: string; }; }) => { const { articleId } = params; const data = await articleDetail({ id: articleId }); return ( <> ); }; export default Page;