Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Jul 25, 2023
2 parents 0307156 + 0ebc289 commit bbd5569
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/app/(home)/(activities)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ export default async function ActivitiesLayout({
<HomeActivitiesTabs />
{children}
</div>
<HomeSidebar />
<div className="w-80 pl-10 hidden lg:block space-y-10">
<HomeSidebar />
</div>
</>
)
}
4 changes: 2 additions & 2 deletions src/components/home/HomeSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export async function HomeSidebar({ hideSearch }: { hideSearch?: boolean }) {
const { t } = await getTranslation("index")

return (
<div className="w-80 pl-10 hidden lg:block space-y-10">
<>
<PromotionLinks />
{!hideSearch && <SearchInput />}
<div className="text-center text-zinc-700 space-y-3">
Expand Down Expand Up @@ -63,6 +63,6 @@ export async function HomeSidebar({ hideSearch }: { hideSearch?: boolean }) {
</>
</ShowMoreContainer>
</div>
</div>
</>
)
}

0 comments on commit bbd5569

Please sign in to comment.