import React from 'react'; interface CopyRightProps { themeConfig: { copyRight: string; }; } export default function CopyRight({ themeConfig: { copyRight } }: CopyRightProps) { return (
{copyRight}
); } CopyRight.defaultProps = { themeConfig: { copyRight: '© 2025 Evershop. All Rights Reserved.' } }; export const layout = { areaId: 'footerLeft', sortOrder: 10 }; export const query = ` query query { themeConfig { copyRight } } `;