removed the need for # in the url, redirect # url to a normal /, there's now a 'page not found' page if the link is broken, profile page added with user being able to see his own blocked content #98

Merged
freakoverse merged 15 commits from staging into master 2024-10-24 12:07:46 +00:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 84cb5b6912 - Show all commits

View File

@ -2,9 +2,9 @@ import { Outlet } from 'react-router-dom'
export const FeedLayout = () => {
return (
<>
<div className='InnerBodyMain'>
<h1>WIP</h1>
<Outlet />
</>
</div>
)
}

View File

@ -1,3 +1,3 @@
export const FeedPage = () => {
return <h1>Feed</h1>
return <h2>Feed</h2>
}

View File

@ -1,3 +1,3 @@
export const NotificationsPage = () => {
return <h1>Notifications</h1>
return <h2>Notifications</h2>
}