From c1ddaef314abade3f98575f391d7f4d2bcfba8a9 Mon Sep 17 00:00:00 2001 From: mariodev Date: Fri, 26 Jul 2024 05:48:07 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Prettier=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/app/app/explore/page.tsx | 53 +++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 14 deletions(-) diff --git a/packages/app/app/explore/page.tsx b/packages/app/app/explore/page.tsx index e15fb5ed5..6a2e52602 100644 --- a/packages/app/app/explore/page.tsx +++ b/packages/app/app/explore/page.tsx @@ -2,25 +2,50 @@ import { HomePageProps } from '@/lib/types' import ArchiveVideos from '../[organization]/videos/components/ArchiveVideos' import FeaturedEvents from './components/FeaturedEvents' import ExploreTabs from './components/ExploreTabs' +import { Input } from '@/components/ui/input' +import { SearchIcon } from 'lucide-react' const Home = ({ searchParams }: HomePageProps) => { return ( -
-
-

- Featured Events -

- -
-
-

- Past Sessions -

- -
- +
+
+
+
+

+ Explore our Video Library +

+

+ Discover a wide range of engaging videos on various + topics. +

+
+ + +
+
+
+
+

+ Featured Events +

+ +
+
+

+ Past Sessions +

+ +
+ +
+
+
) }