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 +

+ +
+ +
+
+
) }