Skip to content

Commit

Permalink
Add tvOS & visionOS sections to Popular page (#1387)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgoldsby authored Nov 21, 2024
1 parent a6fd0d8 commit fb92fbc
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pages/popular.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ import ContentContainer from '../components/ContentContainer';
import ExploreSection from '../components/Explore/ExploreSection';
import {
PlatformAndroid,
PlatformExpo,
PlatformIOS,
PlatformMacOS,
PlatformTvOS,
PlatformVisionOS,
PlatformWeb,
PlatformWindows,
PlatformExpo,
ReactLogo,
} from '../components/Icons';
import Navigation from '../components/Navigation';
Expand Down Expand Up @@ -63,6 +65,18 @@ const Popular = ({ data }) => {
data={data}
filter={lib => lib.macos === true}
/>
<ExploreSection
title="tvOS"
icon={PlatformTvOS}
data={data}
filter={lib => lib.tvos === true}
/>
<ExploreSection
title="VisionOS"
icon={PlatformVisionOS}
data={data}
filter={lib => lib.visionos === true}
/>
<ExploreSection
title="Web"
icon={PlatformWeb}
Expand Down

0 comments on commit fb92fbc

Please sign in to comment.