diff --git a/src/pages/components/QuickActionsGrid.tsx b/src/pages/components/QuickActionsGrid.tsx
new file mode 100644
index 0000000..5acf038
--- /dev/null
+++ b/src/pages/components/QuickActionsGrid.tsx
@@ -0,0 +1,99 @@
+import React from 'react';
+import {
+ BuildOutlined,
+ ImportOutlined,
+ TeamOutlined,
+ BuildColumnsOutlined,
+ DollarOutlined,
+ AuditOutlined,
+} from '@ant-design/icons';
+import QuickActionCard from './QuickActionCard';
+
+const QuickActionsGrid: React.FC = () => {
+ const quickActions = [
+ {
+ icon: ,
+ title: '添加机构',
+ description: '快速创建新的机构',
+ themeColor: '#1890ff',
+ path: '/company/list',
+ },
+ {
+ icon: ,
+ title: '导入项目',
+ description: '批量导入项目数据',
+ themeColor: '#52c41a',
+ path: '/asset/list',
+ },
+ {
+ icon: ,
+ title: '导入员工',
+ description: '批量导入员工数据',
+ themeColor: '#fa8c16',
+ path: '/company/employees',
+ },
+ {
+ icon: ,
+ title: '导入楼栋',
+ description: '批量导入楼栋数据',
+ themeColor: '#722ed1',
+ path: '/asset/houses',
+ },
+ {
+ icon: ,
+ title: '创建收费标准',
+ description: '创建费用收费标准',
+ themeColor: '#13c2c2',
+ path: '/charge/standard',
+ },
+ {
+ icon: ,
+ title: '登记审核',
+ description: '审核登记申请',
+ themeColor: '#f5222d',
+ path: '/examine/house_registers_audit',
+ },
+ ];
+
+ return (
+ <>
+
+ {quickActions.map((action) => (
+
+ ))}
+
+
+ >
+ );
+};
+
+export default QuickActionsGrid;