Index: frontend/src/components/Loading.js
===================================================================
--- frontend/src/components/Loading.js	(revision cb0881dad57196f6efea7903788b461cf6bd7078)
+++ frontend/src/components/Loading.js	(revision cb0881dad57196f6efea7903788b461cf6bd7078)
@@ -0,0 +1,11 @@
+import React from 'react';
+
+function Loading() {
+  return (
+    <div className="flex justify-center items-center py-12">
+      <div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600"></div>
+    </div>
+  );
+}
+
+export default Loading;
