├── src ├── pages │ ├── api │ │ ├── mint.js │ │ ├── createStream.js │ │ ├── stream │ │ │ └── [getStream].js │ │ ├── session │ │ │ └── [getSession].js │ │ ├── sessions │ │ │ └── [getSessions].js │ │ ├── delete.js │ │ ├── asset │ │ │ └── [getAsset].js │ │ ├── getUploadURL.js │ │ ├── uploadForm.js │ │ └── update.js │ ├── streamlive.js │ ├── explore.js │ ├── analytics.js │ ├── addfolder.js │ ├── videoplayer.js │ ├── watch.js │ ├── publishnews.js │ ├── _document.js │ ├── index.js │ ├── _app.js │ ├── livestream │ │ ├── index.tsx │ │ ├── getSessions.tsx │ │ ├── getSession.tsx │ │ ├── getStreams.jsx │ │ ├── createStream.tsx │ │ └── getStream.jsx │ └── streams │ │ └── [livestreamId].js ├── styles │ ├── globals.css │ ├── globals copy.css │ ├── index.css │ ├── popup.css │ ├── Navbar.module.css │ ├── spinner.css │ ├── OnDemand.module.css │ ├── Home.module copy.css │ ├── Livestream.module.css │ ├── Assets.module.css │ ├── MintNFT.module.css │ ├── Form.module.css │ ├── VideoPlayer.module.css │ ├── Home.module.css │ ├── UploadForm.module.css │ ├── Stream.module.css │ ├── CreateAssetForm.module.css │ └── Asset.module.css ├── components │ ├── logoo.png │ ├── image.js │ ├── setupTests.js │ ├── layout.js │ ├── layout2.js │ ├── header │ │ ├── header2.data.js │ │ ├── header.data.js │ │ ├── navbar.js │ │ ├── navbar2.js │ │ └── header.js │ ├── index.js │ ├── logo.js │ ├── icons │ │ ├── right-arrow.js │ │ ├── lock.js │ │ └── gift-box.js │ ├── Stream.js │ ├── cards │ │ ├── faq-item.js │ │ ├── feature.js │ │ ├── service.js │ │ ├── blog-post.js │ │ ├── testimonial.js │ │ └── price-table.js │ ├── share.js │ ├── Web3ui.js │ ├── UploadProgress.js │ ├── seo.js │ ├── footer │ │ ├── widget.js │ │ ├── footer.data.js │ │ └── footer.js │ ├── slick-arrow.js │ ├── section-heading.js │ ├── accordion │ │ ├── base-accordion.js │ │ ├── shared.js │ │ └── accordion.js │ ├── link.js │ ├── videoPlayer.tsx │ ├── Authenticator.js │ ├── topbar.js │ ├── hamburger.js │ ├── ComingSoon.js │ ├── ConnectWallet.js │ └── ContentPage.js ├── assets │ ├── images │ │ ├── icon.png │ │ ├── logo.png │ │ ├── logo1.png │ │ ├── logo2.png │ │ ├── logo3.png │ │ ├── man.png │ │ ├── man2.png │ │ ├── phone.png │ │ ├── woman.png │ │ ├── blog │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── office.png │ │ ├── office2.png │ │ ├── phone2.png │ │ ├── woman2.png │ │ ├── icons │ │ │ ├── lock.png │ │ │ ├── github.png │ │ │ ├── dribbble.png │ │ │ ├── facebook.png │ │ │ ├── shape-top.png │ │ │ ├── twitter.png │ │ │ └── shape-bottom.png │ │ ├── logoblack1.png │ │ ├── logoblack2.png │ │ ├── logoblack3.png │ │ ├── logoblue.png │ │ ├── logoicon.png │ │ ├── logowhite1.png │ │ ├── logowhite2.png │ │ ├── services │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ └── 6.png │ │ ├── server-rack.png │ │ ├── support-team.png │ │ ├── logosmallblack.png │ │ ├── btn-shape-top.svg │ │ ├── btn-shape-bottom.svg │ │ └── shape-1.svg │ └── css │ │ └── react-slick.css ├── analytics │ └── index.js └── sections │ ├── services.js │ ├── faq.js │ ├── ultimate-feature.js │ └── banner.js ├── .firebaserc ├── public ├── favicon.ico ├── favicon1.ico ├── favicon2.ico ├── icon copy.png ├── images │ ├── logo.png │ ├── live.webp │ ├── live2.png │ ├── live3.png │ ├── live4.png │ ├── logo2.png │ ├── logo5.png │ ├── logoo.png │ ├── logoblack.png │ ├── logoblue.png │ ├── logolong.png │ ├── logonew.png │ ├── logonew2.png │ ├── logoonly.png │ ├── support.png │ ├── icons │ │ ├── lock.png │ │ ├── dribbble.png │ │ ├── facebook.png │ │ ├── github.png │ │ ├── twitter.png │ │ ├── shape-top.png │ │ └── shape-bottom.png │ ├── server-rack.png │ ├── services │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png │ ├── testimonial.png │ ├── logolongwhite.png │ ├── logoonlyblue.png │ └── support-team.png ├── robots.txt └── sitemap.xml ├── config.js ├── config2.js ├── jsconfig.json ├── vercel.json ├── postcss.config.js ├── artifacts ├── contracts │ ├── Genic.sol │ │ └── FileNFT.dbg.json │ └── UserTable.sol │ │ └── userTable.dbg.json ├── hardhat │ └── console.sol │ │ ├── console.dbg.json │ │ └── console.json └── @openzeppelin │ └── contracts │ ├── utils │ ├── Address.sol │ │ ├── Address.dbg.json │ │ └── Address.json │ ├── Context.sol │ │ ├── Context.dbg.json │ │ └── Context.json │ ├── Counters.sol │ │ ├── Counters.dbg.json │ │ └── Counters.json │ ├── Strings.sol │ │ ├── Strings.dbg.json │ │ └── Strings.json │ └── introspection │ │ ├── ERC165.sol │ │ ├── ERC165.dbg.json │ │ └── ERC165.json │ │ └── IERC165.sol │ │ ├── IERC165.dbg.json │ │ └── IERC165.json │ └── token │ └── ERC721 │ ├── ERC721.sol │ └── ERC721.dbg.json │ ├── IERC721.sol │ └── IERC721.dbg.json │ ├── IERC721Receiver.sol │ ├── IERC721Receiver.dbg.json │ └── IERC721Receiver.json │ └── extensions │ ├── ERC721URIStorage.sol │ └── ERC721URIStorage.dbg.json │ └── IERC721Metadata.sol │ └── IERC721Metadata.dbg.json ├── firebase.json ├── next-env.d.ts ├── tailwind.config.js ├── next-sitemap.js ├── .gitignore ├── hardhat.config.js ├── scripts └── deploy.js ├── tsconfig.json ├── test ├── sample-test.js ├── test2.js └── test1.js ├── next.config.js ├── package.json └── README.md /src/pages/api/mint.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/favicon1.ico -------------------------------------------------------------------------------- /public/favicon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/favicon2.ico -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | 2 | export const fileShareAddress = "0x92b3556042052c12c962bEf9aCcad837405130a8" 3 | -------------------------------------------------------------------------------- /config2.js: -------------------------------------------------------------------------------- 1 | 2 | export const fileShareAddress = "0xAaEAe3Cb053210d7A3DFC4066af256725261B82A" 3 | -------------------------------------------------------------------------------- /public/icon copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/icon copy.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "jsx": "react", 4 | "baseUrl": "src" 5 | } 6 | } -------------------------------------------------------------------------------- /public/images/live.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/live.webp -------------------------------------------------------------------------------- /public/images/live2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/live2.png -------------------------------------------------------------------------------- /public/images/live3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/live3.png -------------------------------------------------------------------------------- /public/images/live4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/live4.png -------------------------------------------------------------------------------- /public/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logo2.png -------------------------------------------------------------------------------- /public/images/logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logo5.png -------------------------------------------------------------------------------- /public/images/logoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logoo.png -------------------------------------------------------------------------------- /src/components/logoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/components/logoo.png -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "build": { 3 | "env": { 4 | "SENDGRID_API_KEY": "" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /public/images/logoblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logoblack.png -------------------------------------------------------------------------------- /public/images/logoblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logoblue.png -------------------------------------------------------------------------------- /public/images/logolong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logolong.png -------------------------------------------------------------------------------- /public/images/logonew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logonew.png -------------------------------------------------------------------------------- /public/images/logonew2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logonew2.png -------------------------------------------------------------------------------- /public/images/logoonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logoonly.png -------------------------------------------------------------------------------- /public/images/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/support.png -------------------------------------------------------------------------------- /src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/icon.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logo1.png -------------------------------------------------------------------------------- /src/assets/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logo2.png -------------------------------------------------------------------------------- /src/assets/images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logo3.png -------------------------------------------------------------------------------- /src/assets/images/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/man.png -------------------------------------------------------------------------------- /src/assets/images/man2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/man2.png -------------------------------------------------------------------------------- /src/assets/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/phone.png -------------------------------------------------------------------------------- /src/assets/images/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/woman.png -------------------------------------------------------------------------------- /public/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/icons/lock.png -------------------------------------------------------------------------------- /public/images/server-rack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/server-rack.png -------------------------------------------------------------------------------- /public/images/services/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/services/1.png -------------------------------------------------------------------------------- /public/images/services/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/services/2.png -------------------------------------------------------------------------------- /public/images/services/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/services/3.png -------------------------------------------------------------------------------- /public/images/services/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/services/4.png -------------------------------------------------------------------------------- /public/images/services/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/services/5.png -------------------------------------------------------------------------------- /public/images/services/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/services/6.png -------------------------------------------------------------------------------- /public/images/testimonial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/testimonial.png -------------------------------------------------------------------------------- /src/assets/images/blog/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/blog/1.png -------------------------------------------------------------------------------- /src/assets/images/blog/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/blog/2.png -------------------------------------------------------------------------------- /src/assets/images/blog/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/blog/3.png -------------------------------------------------------------------------------- /src/assets/images/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/office.png -------------------------------------------------------------------------------- /src/assets/images/office2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/office2.png -------------------------------------------------------------------------------- /src/assets/images/phone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/phone2.png -------------------------------------------------------------------------------- /src/assets/images/woman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/woman2.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/images/icons/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/icons/dribbble.png -------------------------------------------------------------------------------- /public/images/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/icons/facebook.png -------------------------------------------------------------------------------- /public/images/icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/icons/github.png -------------------------------------------------------------------------------- /public/images/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/icons/twitter.png -------------------------------------------------------------------------------- /public/images/logolongwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logolongwhite.png -------------------------------------------------------------------------------- /public/images/logoonlyblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/logoonlyblue.png -------------------------------------------------------------------------------- /public/images/support-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/support-team.png -------------------------------------------------------------------------------- /src/assets/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/icons/lock.png -------------------------------------------------------------------------------- /src/assets/images/logoblack1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logoblack1.png -------------------------------------------------------------------------------- /src/assets/images/logoblack2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logoblack2.png -------------------------------------------------------------------------------- /src/assets/images/logoblack3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logoblack3.png -------------------------------------------------------------------------------- /src/assets/images/logoblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logoblue.png -------------------------------------------------------------------------------- /src/assets/images/logoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logoicon.png -------------------------------------------------------------------------------- /src/assets/images/logowhite1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logowhite1.png -------------------------------------------------------------------------------- /src/assets/images/logowhite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logowhite2.png -------------------------------------------------------------------------------- /src/assets/images/services/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/services/1.png -------------------------------------------------------------------------------- /src/assets/images/services/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/services/2.png -------------------------------------------------------------------------------- /src/assets/images/services/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/services/3.png -------------------------------------------------------------------------------- /src/assets/images/services/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/services/4.png -------------------------------------------------------------------------------- /src/assets/images/services/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/services/5.png -------------------------------------------------------------------------------- /src/assets/images/services/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/services/6.png -------------------------------------------------------------------------------- /public/images/icons/shape-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/icons/shape-top.png -------------------------------------------------------------------------------- /src/assets/images/icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/icons/github.png -------------------------------------------------------------------------------- /src/assets/images/server-rack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/server-rack.png -------------------------------------------------------------------------------- /src/assets/images/support-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/support-team.png -------------------------------------------------------------------------------- /public/images/icons/shape-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/public/images/icons/shape-bottom.png -------------------------------------------------------------------------------- /src/assets/images/icons/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/icons/dribbble.png -------------------------------------------------------------------------------- /src/assets/images/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/icons/facebook.png -------------------------------------------------------------------------------- /src/assets/images/icons/shape-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/icons/shape-top.png -------------------------------------------------------------------------------- /src/assets/images/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/icons/twitter.png -------------------------------------------------------------------------------- /src/assets/images/logosmallblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/logosmallblack.png -------------------------------------------------------------------------------- /src/assets/images/icons/shape-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyaustin/STREAMAGENIC/HEAD/src/assets/images/icons/shape-bottom.png -------------------------------------------------------------------------------- /artifacts/contracts/Genic.sol/FileNFT.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/hardhat/console.sol/console.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/contracts/UserTable.sol/userTable.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/Counters.sol/Counters.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "public": "out", 4 | "ignore": [ 5 | "firebase.json", 6 | "**/.*", 7 | "**/node_modules/**" 8 | ] 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC721/ERC721.sol/ERC721.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # * 2 | User-agent: * 3 | Allow: / 4 | 5 | # Host 6 | Host: https://stremagenic.vercel.app 7 | 8 | # Sitemaps 9 | Sitemap: https://stremagenic.vercel.app/sitemap.xml 10 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC721/IERC721.sol/IERC721.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /src/components/image.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Image as Img } from 'theme-ui'; 3 | 4 | export default function Image({ src, ...rest }) { 5 | return ; 6 | } 7 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol/IERC721Receiver.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol/ERC721URIStorage.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol/IERC721Metadata.dbg.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-dbg-1", 3 | "buildInfo": "../../../../../../build-info/e3c2386398de6d6f12b961e3d7a29b57.json" 4 | } 5 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /src/components/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom' 6 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | "./src/pages/**/*.{js,ts,jsx,tsx}", 5 | "./src/components/**/*.{js,ts,jsx,tsx}", 6 | ], 7 | theme: { 8 | extend: {}, 9 | }, 10 | plugins: [], 11 | } 12 | -------------------------------------------------------------------------------- /artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-artifact-1", 3 | "contractName": "Context", 4 | "sourceName": "@openzeppelin/contracts/utils/Context.sol", 5 | "abi": [], 6 | "bytecode": "0x", 7 | "deployedBytecode": "0x", 8 | "linkReferences": {}, 9 | "deployedLinkReferences": {} 10 | } 11 | -------------------------------------------------------------------------------- /next-sitemap.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | siteUrl: 'https://stremagenic.vercel.app', 3 | generateRobotsTxt: true, 4 | // optional 5 | // robotsTxtOptions: { 6 | // additionalSitemaps: [ 7 | // 'https://example.com/my-custom-sitemap-1.xml', 8 | // 'https://example.com/my-custom-sitemap-2.xml', 9 | // 'https://example.com/my-custom-sitemap-3.xml', 10 | // ], 11 | // }, 12 | }; 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | .env* 21 | /cache 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | .vercel 29 | -------------------------------------------------------------------------------- /src/styles/globals copy.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | html, 6 | body { 7 | padding: 0; 8 | margin: 0; 9 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, 10 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; 11 | } 12 | 13 | a { 14 | color: inherit; 15 | text-decoration: none; 16 | } 17 | 18 | * { 19 | box-sizing: border-box; 20 | } 21 | -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- 1 | .popup-content{margin:auto;background:#fff;width:50%;padding:5px;border:1px solid #d7d7d7}[role=tooltip].popup-content{width:40%;box-shadow:0 0 3px rgba(0,0,0,.16);border-radius:5px}.popup-overlay{background:rgba(0,0,0,.5)}[data-popup=tooltip].popup-overlay{background:transparent}.popup-arrow{-webkit-filter:drop-shadow(0 -3px 3px rgba(0,0,0,.16));filter:drop-shadow(0 -3px 3px rgba(0,0,0,.16));color:#fff;stroke-width:2px;stroke:#d7d7d7;stroke-dasharray:30px;stroke-dashoffset:-54px;left:0;right:0;top:0;bottom:0} -------------------------------------------------------------------------------- /src/styles/popup.css: -------------------------------------------------------------------------------- 1 | .popup-content{margin:auto;background:#fff;width:50%;padding:5px;border:1px solid #d7d7d7}[role=tooltip].popup-content{width:700px;box-shadow:0 0 3px rgba(0,0,0,.16);border-radius:5px}.popup-overlay{background:rgba(0,0,0,.5)}[data-popup=tooltip].popup-overlay{background:transparent}.popup-arrow{-webkit-filter:drop-shadow(0 -3px 3px rgba(0,0,0,.16));filter:drop-shadow(0 -3px 3px rgba(0,0,0,.16));color:#fff;stroke-width:2px;stroke:#d7d7d7;stroke-dasharray:30px;stroke-dashoffset:-54px;left:0;right:0;top:0;bottom:0} -------------------------------------------------------------------------------- /src/assets/images/btn-shape-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- 1 | /** @jsxRuntime classic */ 2 | /** @jsx jsx */ 3 | import { jsx } from 'theme-ui'; 4 | import { Fragment } from 'react'; 5 | import Header from './header/header'; 6 | import Footer from './footer/footer'; 7 | export default function Layout({ children }) { 8 | return ( 9 | 10 |
11 |
16 | {children} 17 |
18 |