diff --git a/packages/metavinci/landing/image.png b/packages/metavinci/landing/image.png new file mode 100644 index 0000000..f232ed5 Binary files /dev/null and b/packages/metavinci/landing/image.png differ diff --git a/packages/metavinci/landing/landing.css b/packages/metavinci/landing/landing.css new file mode 100644 index 0000000..f7a6c17 --- /dev/null +++ b/packages/metavinci/landing/landing.css @@ -0,0 +1,102 @@ + +body { + background-color: black; +} + +.header { + font-family: Graphik Web Regular; + font-style: italic; + font-weight: 500; + font-size: 2rem; + line-height: 40px; + + color: #FFFFFF; + border: 1px solid #000000; + +} + +.subheader { + font-family: Graphik Web Regular; + font-style: normal; + font-weight: 500; + font-size: 36px; + line-height: 48px; + + color: #FFFFFF; + margin: 42px 0px; +} + +.text { + font-family: Graphik Web Regular; + font-style: normal; + font-weight: normal; + font-size: 18px; + line-height: 1.5; + + color: rgba(255, 255, 255, 0.7); + +} + +.image { + width: 100%; + height: 100vw; + + background: url(image.png); + background-repeat: no-repeat; + background-size: contain; +} + +/* button { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + padding: 20px 10px; + + position: static; + width: 350px; + height: 59px; + left: 0px; + top: 69px; + + background: linear-gradient(270deg, #616774 7.29%, #403F4C 100%); + border-radius: 8px; + + flex: none; + order: 1; + flex-grow: 0; + margin: 15px 0px; + + color: white; +} + +.email-input { + display: flex; + flex-direction: row; + align-items: center; + padding: 16px 10px 16px 24px; + + position: static; + width: 348px; + height: 54px; + left: 0px; + top: 0px; + + background: #282828; + border-radius: 8px; + + flex: none; + order: 0; + flex-grow: 0; + margin: 15px 0px; +} */ + +.typeform-widget { + height: 360px !important; +} + +#form { + width: 100%; + max-width: 400px; + margin-bottom: 50px; +} diff --git a/packages/metavinci/landing/landing.html b/packages/metavinci/landing/landing.html new file mode 100644 index 0000000..7cb94c5 --- /dev/null +++ b/packages/metavinci/landing/landing.html @@ -0,0 +1,47 @@ + + + + Metaplex NFT Marketplace + + + + + + + + + + +
+
METAPLEX
+
+
+
+
NFT platforms. Push to start.
+
+ Metaplex is an open source NFT framework built on Solana that puts creators and artists in the drivers + seat. +
+
+ With Metaplex, you can launch an NFT marketplace in minutes. +
+
+
+ + +
+ +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/packages/metavinci/src/views/auctionCreate/index.tsx b/packages/metavinci/src/views/auctionCreate/index.tsx index e30b921..adb3f84 100644 --- a/packages/metavinci/src/views/auctionCreate/index.tsx +++ b/packages/metavinci/src/views/auctionCreate/index.tsx @@ -53,6 +53,7 @@ import { WinningConstraint, } from '../../models/metaplex'; import { serialize } from 'borsh'; +import moment from 'moment' import { createAuctionManager, SafetyDepositDraft, @@ -94,7 +95,8 @@ export interface AuctionState { // suggested date time when auction should end UTC+0 endDate?: Date; - // Jose's attributes + + ////////////////// category: AuctionCategory; saleType?: 'auction' | 'sale'; @@ -362,7 +364,7 @@ export const AuctionCreateView = () => { )} {stepsByCategory[attributes.category][step][1]} - {0 < step && step < (stepsByCategory[attributes.category].length -1) && ( + {0 < step && step < (stepsByCategory[attributes.category].length - 1) && (