Skip to content

Commit

Permalink
Added weapp form api integration
Browse files Browse the repository at this point in the history
  • Loading branch information
alkadips committed Aug 29, 2023
1 parent b52bc9e commit a104cb7
Show file tree
Hide file tree
Showing 8 changed files with 690 additions and 586 deletions.
42 changes: 18 additions & 24 deletions layout/AppFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ const AppFooter = () => {
layoutConfig.colorScheme === "light" ? "dark" : "white"
}.svg`}
alt="Logo"
height="30"
width="30"
height="60"
width="60"
className="mr-2"
/>
</div>
<div className="font-bold text-2xl cursor-pointer">
<div className=" mt-3 font-bold text-3xl cursor-pointer">
Myriadflow
</div>
<div className="mt-3 text-sm text-left text-black">
<div className="mt-5 text-xl text-left text-black">
<div>MyriadFlow is an innovative platform to</div>
<div>explore & launch NFT Experiences. Dive into</div>
<div>the next generation of Utility NFTs through </div>
Expand All @@ -37,9 +37,9 @@ const AppFooter = () => {
Explore
</div>
<div>
<div className="mt-2 text-sm"></div>
<div className="mt-5 text-sm"></div>
All
</div>
</div>
<div>
<div className="mt-2 text-sm"></div>
Image
Expand All @@ -48,10 +48,7 @@ const AppFooter = () => {
<div className="mt-2 text-sm"></div>
Music
</div>
<div>
<div className="mt-2 text-sm"></div>
Image
</div>

<div>
<div className="mt-2 text-sm"></div>
Video
Expand All @@ -61,29 +58,26 @@ const AppFooter = () => {
Document
</div>

<div className="mt-2 text-sm">
{" "}
others
</div>

</div>

<div>
<div className="font-bold text-2xl ">Dashboard</div>
<div className="mt-2">Created</div>
<div>Sold</div>
<div>bought</div>
<div>market</div>
<div className="mt-5">Created</div>
<div className="mt-2">Sold</div>
<div className="mt-2">bought</div>
<div className="mt-2">market</div>
</div>

<div>
<div className="font-bold text-2xl ">My profile</div>
<div className="mt-2">create</div>
<div>wishlist</div>
<div>cart</div>
<div className="mt-5">create</div>
<div className="mt-2">wishlist</div>
<div className="mt-2">cart</div>
</div>
<div>
<div className="font-bold text-2xl ">Company</div>
<div className="mt-2">About</div>
<div className="mt-5">About</div>
</div>
<div>
<div className="font-bold text-2xl ">
Expand Down Expand Up @@ -117,8 +111,8 @@ const AppFooter = () => {


</div>
<div className="flex justify-content-center text-sm flex flex-col py-3 px-3 gradient-blue border-y-2 " style={{background:"#8FBAFE"}}>
<div className="font-bold">
<div className="flex justify-content-center flex flex-col py-3 px-3 gradient-blue border-y-2 " style={{background:"#8FBAFE"}}>
<div className="font-bold text-2xl">
MyriadFlow | Copyright © {year} Lazarus Network Inc. All Rights
Reserved.
</div>
Expand Down
2 changes: 1 addition & 1 deletion pages/eternumPass.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import React, { useState, useRef } from "react";
import { withRouter } from "next/router";
import axios from "axios";
import { Dropdown } from "primereact/dropdown";
import AppTopbar from "../layout/AppTopbar";
import { Toast } from "primereact/toast";
import Link from "next/link";
import Layout2 from "../Components/Layout2";
Expand Down Expand Up @@ -74,6 +73,7 @@ const EternumPass = () => {
param10: "0x1B8683e1885B3ee93524cD58BC10Cf3Ed6af4298",
},
network: "maticmum",
storefrontId: ""
},
{
headers: {
Expand Down
5 changes: 3 additions & 2 deletions pages/eturnalsol.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import React from "react";
import { withRouter } from "next/router";
import axios from "axios";
import { Toast } from "primereact/toast";
import AppTopbar from "../layout/AppTopbar";
import Link from "next/link";
import Layout2 from "../Components/Layout2";
const BASE_URL_LAUNCH = process.env.NEXT_PUBLIC_BASE_URL_GATEWAY;
Expand Down Expand Up @@ -77,7 +76,9 @@ if(valid){
param3 : "0x1B8683e1885B3ee93524cD58BC10Cf3Ed6af4298",
param4 : "0xEFf4209584cc2cE0409a5FA06175002537b055DC"
},
network: "maticmum" },
network: "maticmum",
storefrontId: ""
},
{
headers: {
Authorization: `Bearer ${token}`,
Expand Down
1 change: 1 addition & 0 deletions pages/fusionSeries.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ class FusionSeries extends React.Component {
param5: "0xEFf4209584cc2cE0409a5FA06175002537b055DC",
},
network: "maticmum",
storefrontId: "7e42ad4b-d131-4e0e-a06b-c014ca4e2095"
},
{
headers: {
Expand Down
2 changes: 1 addition & 1 deletion pages/getAllSignatureseries.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default function GetAllSignatureseries() {
className="grid"
style={{ gap: "20px", cursor: "pointer", marginLeft: "30px",marginBottom:'300px' }}
>
<Button onClick={addsubgraphApi} className="buy-img" label="subgrapg"></Button>
{/* <Button onClick={addsubgraphApi} className="buy-img" label="subgrapg"></Button> */}
{contractData?.length > 0 ? (
contractData.map((contract) => {
return (
Expand Down
Loading

0 comments on commit a104cb7

Please sign in to comment.