feat: add ReviewsSection component and integrate review fetching and submission functionality

This commit is contained in:
2025-06-14 18:48:55 -05:00
parent 3a92598dbf
commit 70825108f2
3 changed files with 131 additions and 0 deletions

View File

@@ -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 = () => {
</section>
{/* Footer */}
<ReviewsSection cardClasses={cardClasses} textClasses={textClasses} isDarkMode={isDarkMode} />
<footer
className={`py-12 ${
isDarkMode ? "bg-black/40" : "bg-gray-900/10"