feat(explore): de-mock public and shared explore page

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2025-02-05 21:27:16 +01:00 committed by Erik Michelson
parent 0a9b965b72
commit 6bc051165f
No known key found for this signature in database
GPG key ID: DB99ADDDC5C0AF82
2 changed files with 6 additions and 4 deletions

View file

@ -5,10 +5,11 @@
*/
import type { NextPage } from 'next'
import { LandingLayout } from '../../../../components/landing-layout/landing-layout'
import { ExploreNotesSection } from '../../../../components/explore-page/explore-notes-section/explore-notes-section'
import { Mode } from '../../../../components/explore-page/mode-selection/mode'
const ExplorePublicPage: NextPage = () => {
return <LandingLayout>Public Notes</LandingLayout>
return <ExploreNotesSection mode={Mode.PUBLIC} />
}
export default ExplorePublicPage

View file

@ -5,10 +5,11 @@
*/
import type { NextPage } from 'next'
import { LandingLayout } from '../../../../components/landing-layout/landing-layout'
import { ExploreNotesSection } from '../../../../components/explore-page/explore-notes-section/explore-notes-section'
import { Mode } from '../../../../components/explore-page/mode-selection/mode'
const ExploreSharedPage: NextPage = () => {
return <LandingLayout>Shared Notes</LandingLayout>
return <ExploreNotesSection mode={Mode.SHARED_WITH_ME} />
}
export default ExploreSharedPage