make top-left logo a link to landing page

This commit is contained in:
MarconLP 2023-07-17 12:52:51 +02:00
parent 4253a74de5
commit 1cf5c60646
No known key found for this signature in database
GPG key ID: A08A9C8B623F5EA5
2 changed files with 6 additions and 2 deletions

View file

@ -94,7 +94,9 @@ const VideoList: NextPage = () => {
</Head>
<main className="flex h-screen w-screen flex-col items-center justify-center">
<div className="flex min-h-[62px] w-full items-center justify-between border-b border-solid border-b-[#E7E9EB] bg-white px-6">
<Link href="/">
<span>Snapify</span>
</Link>
<div className="flex items-center justify-center">
{video && video.userId === session?.user.id ? (
<>

View file

@ -103,7 +103,9 @@ const VideoList: NextPage = () => {
</Head>
<main className="flex h-screen min-h-screen flex-col items-center justify-center bg-gradient-to-b from-[#2e026d] to-[#15162c]">
<div className="flex min-h-[62px] w-full items-center justify-between border-b border-solid border-b-[#E7E9EB] bg-white px-6">
<Link href="/">
<span>Snapify</span>
</Link>
<div className="flex flex-row items-center justify-center">
<VideoRecordModal />
<VideoUploadModal />