From 70825108f23304b371edf46a9bf8a89bd55951a2 Mon Sep 17 00:00:00 2001 From: Maaz Date: Sat, 14 Jun 2025 18:48:55 -0500 Subject: [PATCH] feat: add ReviewsSection component and integrate review fetching and submission functionality --- src/App.tsx | 2 + src/ReviewsSection.tsx | 106 +++++++++++++++++++++++++++++++++++++++++ src/reviewsApi.ts | 23 +++++++++ 3 files changed, 131 insertions(+) create mode 100644 src/ReviewsSection.tsx diff --git a/src/App.tsx b/src/App.tsx index 48934cb..2fff2e9 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -11,6 +11,7 @@ import { Sun, Moon, } from "lucide-react"; +import ReviewsSection from "./ReviewsSection"; const App = () => { const [, setActiveSection] = useState("hero"); @@ -704,6 +705,7 @@ const App = () => { {/* Footer */} +