diff --git a/src/app/page.tsx b/src/app/page.tsx index d748997..3bf880d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,3 @@ -import Header from '../components/header/BaseHeader'; import TagFilter from '../components/club/directory/TagFilter'; import ClubDirectoryGrid from '../components/club/directory/ClubDirectoryGrid'; import type { Metadata } from 'next'; @@ -23,7 +22,7 @@ type Params = { const Home = async (props: Params) => { const tags = await api.club.distinctTags(); - const featured = await api.club.getCarousel(); + // const featured = await api.club.getCarousel(); // const onlyClubs = featured.map((item) => item.club); return (
diff --git a/src/components/header/BaseHeader.tsx b/src/components/header/BaseHeader.tsx index 7d1d027..5b9429a 100644 --- a/src/components/header/BaseHeader.tsx +++ b/src/components/header/BaseHeader.tsx @@ -4,7 +4,6 @@ import { getServerAuthSession } from '@src/server/auth'; import { ClubSearchBar } from '../searchBar/ClubSearchBar'; import { EventSearchBar } from '../searchBar/EventSearchBar'; import SignInButton from './signInButton'; -import MobileNav from '../nav/MobileNav'; import { api } from '@src/trpc/server'; import NewSidebar from '../nav/Slide';