-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description The following improvements have been made: - Made the speaker page mobile friendly - Added the streamEth logo in the navigation bar - Created a state to makes sure the user does not reupload the NFT on Zora - Added trackers on the "Upload to YT" and "Upload to Zora" buttons ## Type of change Please delete options that are not relevant. - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) ## Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published ## Screenshots (if appropriate): ## Additional context: @Eric-Vondee There is one error when I try to upload to Zora, which is the following: `message: "type has should be one of the following; ['event','video']"` @greatsamist The YouTube upload does not work yet, because we are missing the "socialId" Tracker has not been tested yet, since it needs to be on production. --------- Co-authored-by: mariodev <gh_mario.proclaim@slmail.me> Co-authored-by: greatsamist <ifegbenga@gmail.com>
- Loading branch information
1 parent
7bfd7f0
commit 9017fbb
Showing
11 changed files
with
6,008 additions
and
5,518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
'use server'; | ||
|
||
import HomePageNavbar from '@/components/Layout/HomePageNavbar'; | ||
import Footer from '@/components/Layout/Footer'; | ||
|
||
const Layout = async ({ children }: { children: React.ReactNode }) => { | ||
return ( | ||
<div className="flex flex-col mx-auto w-full bg-white min-h-[100vh]"> | ||
<HomePageNavbar showLogo={true} pages={[]} showSearchBar={false} /> | ||
<div className="flex-grow w-full h-full">{children}</div> | ||
<div className="sticky mb-5 top-[100vh]"> | ||
<Footer /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Layout; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.