- >
+
);
};
diff --git a/src/web/src/components/hero/index.jsx b/src/web/src/components/hero/index.jsx
index 11d1910..5d2cca3 100644
--- a/src/web/src/components/hero/index.jsx
+++ b/src/web/src/components/hero/index.jsx
@@ -5,9 +5,7 @@ import Content from '@/components/hero/content';
function Hero() {
return (
-
-
-
+
);
}
diff --git a/src/web/src/components/ui/grid.jsx b/src/web/src/components/ui/grid.jsx
deleted file mode 100644
index 10c2506..0000000
--- a/src/web/src/components/ui/grid.jsx
+++ /dev/null
@@ -1,37 +0,0 @@
-"use client"
-
-import React, { useState } from 'react';
-
-const Grid = () => {
- const [squares, setSquares] = useState([]);
-
- const handleClick = (event) => {
- const { clientX, clientY } = event;
- const newSquares = [];
-
- for (let i = 0; i < 25; i++) {
- const left = clientX - 50 + Math.random() * 100;
- const top = clientY - 50 + Math.random() * 100;
- const color = `rgb(${Math.random() * 255}, ${Math.random() * 255}, ${Math.random() * 255})`;
-
- newSquares.push({ left, top, color });
- }
-
- setSquares(newSquares);
- };
-
- return (
-
- {squares.map((square, index) => (
-
- ))}
-
- );
-};
-
-export default Grid;
-