make top-left logo a link to landing page
This commit is contained in:
parent
4253a74de5
commit
1cf5c60646
2 changed files with 6 additions and 2 deletions
|
|
@ -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 ? (
|
||||
<>
|
||||
|
|
|
|||
|
|
@ -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 />
|
||||
|
|
|
|||
Loading…
Reference in a new issue