BlogDetails
A responsive blog detail page built with MUI, displaying an article with author info, social icons, a featured image, and a breakdown of the five stages of design thinking.
// @project
import BlogDetail from '@/blocks/BlogDetails';
import ContainerWrapper from '@/components/ContainerWrapper';
/*************************** SECTIONS - BLOG DETAILS ***************************/
export default function BlogDetails() {
return (
<>
{/* other setion */}
{/* Blog Details */}
<ContainerWrapper>
<BlogDetail />
</ContainerWrapper>
</>
);
}
Last updated