'use client'; import { Link } from '@theme/components'; import { SpecialPageType } from '@akinon/next/types'; import { Image } from '@akinon/next/components/image'; export interface Props { data: SpecialPageType; } const SpecialPageBanner = (props: Props) => { if (!props.data?.banner) { return null; } return ( <> {props.data?.name} {props.data?.name} {props.data?.banner_description && (
)} ); }; export default SpecialPageBanner;