From f63b3eaf601ce70fe0c8988992a421026ba51423 Mon Sep 17 00:00:00 2001 From: Abhishek Date: Sun, 25 Aug 2024 16:36:56 +0530 Subject: [PATCH] style: teams page improved ui of /teams page --- app/teams/page.jsx | 12 ++-- components/FiltersSidebar.jsx | 104 +++++++++++++++++----------------- 2 files changed, 59 insertions(+), 57 deletions(-) diff --git a/app/teams/page.jsx b/app/teams/page.jsx index a50a5c1..acc6272 100644 --- a/app/teams/page.jsx +++ b/app/teams/page.jsx @@ -40,15 +40,13 @@ const TeamFinder = () => { }; return ( -
+

Team Finder

-
- - - +
+

Find Team

@@ -74,12 +72,14 @@ const TeamFinder = () => {
- + {teams.map((team, index) => ( ))}
+ +
); diff --git a/components/FiltersSidebar.jsx b/components/FiltersSidebar.jsx index c9aeb49..ac2876f 100644 --- a/components/FiltersSidebar.jsx +++ b/components/FiltersSidebar.jsx @@ -1,57 +1,59 @@ -import React from "react"; +import { Button } from "../@/components/ui/button"; const FiltersSidebar = () => { return ( -
-
-
-

Filters

- -
-
- - -
-
- - -
-
- - -
- +
+ +
+
+
Filters
+ +
+
+ +
+ + +
+
+ + +
+
+ + +
+ +
);