\n \n {/* Quote Block layout on article page */}\n \n \n \n >\n );\n};\n\n// This function will replace quotes with an alternative quote style if they are the first or last character\nconst replaceQuotes = (string: string): string => {\n const firstChar = string.charAt(0);\n const lastChar = string.charAt(string.length - 1);\n\n if (firstChar === '\"') {\n string = '“' + string.slice(1);\n }\n\n if (lastChar === '\"') {\n string = string.slice(0, -1) + '”';\n }\n\n return string;\n};\n\nexport default QuoteImageBlock;\n","import { IQuoteImageBlock } from '@models/IQuoteImageBlock';\nimport SiteEnum from '@models/enums/SiteEnum';\nimport SharedQuoteImageBlock from '@organisms/QuoteImageBlock/QuoteImageBlock';\n\nconst QuoteImageBlock = (props: IQuoteImageBlock) => (\n