添加了 Feature 接口,定义了包含 img、title、subtitle 和 href 属性的结构。
@@ -0,0 +1,7 @@
+
+interface Feature {
+ img: string
+ title: string
+ subtitle: string
+ href: string
+}