18 lines
481 B
TypeScript
18 lines
481 B
TypeScript
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
|
import ContentProductionVisualization from "@/components/visualization/content-production";
|
|
import Image from "next/image";
|
|
|
|
export default function ContentProduction() {
|
|
return (
|
|
<div className="flex justify-center items-center">
|
|
<Image
|
|
className="w-auto h-[400px]"
|
|
width={500}
|
|
height={300}
|
|
src="/assets/img/welcome.png"
|
|
alt="mail"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|