diff --git a/src/App.jsx b/src/App.jsx index 70ae5ee..a2cc67b 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -13,6 +13,11 @@ import Contact from "./pages/Contact"; import UseCases from "./pages/UseCases"; import ArticleInternalPage from "./components/ArticleInternalPage/ArticleInternalPage"; import NotFound from "./pages/NotFound"; +import fintech from "../src/assets/images/usecase-bg.png"; +import adTech from "../src/assets/images/addtech.jpg"; +import martech from "../src/assets/images/martech.png"; +import healthTech from "../src/assets/images/health-tech.png"; +import { useCase } from "./data/useCase"; const router = createBrowserRouter( createRoutesFromElements( @@ -22,9 +27,65 @@ const router = createBrowserRouter( } /> } /> } /> - } /> + } + /> } /> } /> + + } + /> + + + } + /> + + } + /> + + } + /> ) ); diff --git a/src/assets/images/addtech.jpg b/src/assets/images/addtech.jpg new file mode 100644 index 0000000..b85e117 Binary files /dev/null and b/src/assets/images/addtech.jpg differ diff --git a/src/assets/images/health-tech.png b/src/assets/images/health-tech.png new file mode 100644 index 0000000..0b45759 Binary files /dev/null and b/src/assets/images/health-tech.png differ diff --git a/src/assets/images/martech.png b/src/assets/images/martech.png new file mode 100644 index 0000000..bf267ef Binary files /dev/null and b/src/assets/images/martech.png differ diff --git a/src/components/BuildPage/LearnMore.jsx b/src/components/BuildPage/LearnMore.jsx index a51215b..bacbdcc 100644 --- a/src/components/BuildPage/LearnMore.jsx +++ b/src/components/BuildPage/LearnMore.jsx @@ -98,7 +98,7 @@ const LearnMore = () => { }} _hover={{ color: "#000", - border: "none", + border: "1px solid white", zIndex: 1, }} > diff --git a/src/components/Card/LearnCard.jsx b/src/components/Card/LearnCard.jsx index 4a448b7..d2a0c85 100644 --- a/src/components/Card/LearnCard.jsx +++ b/src/components/Card/LearnCard.jsx @@ -1,8 +1,9 @@ /* eslint-disable react/prop-types */ /* eslint-disable no-unused-vars */ import { Box, Container, Text, Image, Button } from "@chakra-ui/react"; +import { Link } from "react-router-dom"; -const LearnCard = ({ id, src, alt, text }) => { +const LearnCard = ({ id, src, alt, text, href }) => { return ( {/* {images.map((img) => ( @@ -59,18 +60,20 @@ const LearnCard = ({ id, src, alt, text }) => { zIndex: "2", }} > - + + + diff --git a/src/components/Community/CommunityCard.jsx b/src/components/Community/CommunityCard.jsx index f2277c7..b47931c 100644 --- a/src/components/Community/CommunityCard.jsx +++ b/src/components/Community/CommunityCard.jsx @@ -113,14 +113,14 @@ const individuals = [ "A highly keen blockchain engineer with a zeal for innovation who brings new ideas to the table.", imageUrl: imgnine, }, - { - location: "india", - name: "Maneesha Panda", - jobTitle: "Blockchain Engineer", - description: - "A highly keen blockchain engineer with a zeal for innovation who brings new ideas to the table.", - imageUrl: imgnine, - }, + // { + // location: "india", + // name: "Maneesha Panda", + // jobTitle: "Blockchain Engineer", + // description: + // "A highly keen blockchain engineer with a zeal for innovation who brings new ideas to the table.", + // imageUrl: imgnine, + // }, ]; const CommunityCard = () => { diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx index 5c0c897..df28b5a 100644 --- a/src/components/Footer/Footer.jsx +++ b/src/components/Footer/Footer.jsx @@ -149,7 +149,7 @@ const Footer = () => { fontFamily={"Mona Sans"} fontWeight={"500"} fontSize={"22px"} - marginBottom={"2rem"} + marginBottom={"1rem"} > Explore @@ -178,7 +178,7 @@ const Footer = () => { fontFamily={"Mona Sans"} fontWeight={"500"} fontSize={"22px"} - marginBottom={"2rem"} + marginBottom={"1rem"} > Social @@ -190,42 +190,69 @@ const Footer = () => { fontWeight={"400"} marginLeft={"0px !important"} > - - - telegram - - + + Telegram + + + + - - Twitter - - + + Twitter + + + + - - GitHub - - + + GitHub + + + + - - Discord - + + + Discord + + { fontWeight={"400"} marginLeft={"0px !important"} > - - - Reddit - - + + Reddit + + + + - - Facebook - - + + Facebook + + + + - - LinkedIn - + + + LinkedIn + + diff --git a/src/components/HomePage/HomeBanner.jsx b/src/components/HomePage/HomeBanner.jsx index 911a9e2..b768d75 100644 --- a/src/components/HomePage/HomeBanner.jsx +++ b/src/components/HomePage/HomeBanner.jsx @@ -2,6 +2,7 @@ import { Box, Button, Text } from "@chakra-ui/react"; import { Container } from "@chakra-ui/react"; import { useMediaQuery } from "@chakra-ui/react"; import banner from "../../assets/images/bannerBg.gif"; +import { Link } from "react-router-dom"; const BannerContent = [ { @@ -120,7 +121,7 @@ const HomeBanner = () => { fontWeight={"400"} lineHeight={"37.5px"} fontFamily={"Poppins"} - width={"80%"} + width={"77%"} margin={"20px auto 0 auto"} sx={{ "@media (max-width: 1024px)": { @@ -137,53 +138,55 @@ const HomeBanner = () => { {BannerContent[2] && ( - + + + )} diff --git a/src/components/HomePage/Resources.jsx b/src/components/HomePage/Resources.jsx index 0861724..a5b0298 100644 --- a/src/components/HomePage/Resources.jsx +++ b/src/components/HomePage/Resources.jsx @@ -18,6 +18,21 @@ const content = [ date: `Published: March 13, 2020`, text: `Enterprise blockchains on a Public Chain!`, }, + { + id: 4, + date: `Published: March 13, 2020`, + text: `Enterprise blockchains on a Public Chain!`, + }, + { + id: 5, + date: `Published: March 13, 2020`, + text: `Enterprise blockchains on a Public Chain!`, + }, + { + id: 6, + date: `Published: March 13, 2020`, + text: `Enterprise blockchains on a Public Chain!`, + }, ]; const Content = { @@ -77,7 +92,7 @@ const Resources = () => { ))} - + */} diff --git a/src/components/LearnPage/LearnBanner.jsx b/src/components/LearnPage/LearnBanner.jsx index 5707c5a..ada9e6f 100644 --- a/src/components/LearnPage/LearnBanner.jsx +++ b/src/components/LearnPage/LearnBanner.jsx @@ -1,5 +1,6 @@ import { Box, Button, Container, Text } from "@chakra-ui/react"; import banner from "../../assets/images/learnBanner.webp"; +import { Link } from "react-router-dom"; const BannerContent = [ { @@ -116,53 +117,59 @@ const LearnBanner = () => { {BannerContent[1].subheading} - + + diff --git a/src/components/LearnPage/LearnDev.jsx b/src/components/LearnPage/LearnDev.jsx index 48cf6a5..997f445 100644 --- a/src/components/LearnPage/LearnDev.jsx +++ b/src/components/LearnPage/LearnDev.jsx @@ -11,35 +11,39 @@ import { useMediaQuery } from "@chakra-ui/react"; // import { Badge } from "@chakra-ui/react"; const content = [ - { - id: 1, - src: `${chainx}`, - alt: "ChainX", - text: `Building a Web3 infrastructure to support nonprofit communities, starting with YMCA`, - }, + // { + // id: 1, + // src: `${chainx}`, + // alt: "ChainX", + // text: `Building a Web3 infrastructure to support nonprofit communities, starting with YMCA`, + // }, { id: 2, src: ensurity, alt: "Ensurity", text: `Building solutions for an easier transition from Web2 to Web3 for global enterprises with a focus on public sector companies.`, + href: `https://www.ensurity.com/`, }, { id: 3, src: exr, alt: "EXR", text: `A metaverse, XR, and Web3 entity offering solutions that infuse gamification and tokenomics.`, + href: `https://getfexr.com/`, }, { id: 4, src: finalo, alt: "Finalo Education", text: `Delivers KYC/DID solutions for banks, and financial institutions, a highly secure algorithm for quantum security and a password-less authentication process for secure scaling`, + href: `https://www.finaoeducation.com/`, }, { id: 5, src: jupiter, alt: "Jupiter", text: `Mobile-based wallet that generates and stores private keys on a mobile device`, + href: `https://jupitermeta.io/`, }, ]; @@ -117,6 +121,7 @@ const LearnDev = () => { src={item.src} alt={item.alt} text={item.text} + href={item.href} /> ))} diff --git a/src/components/NavBar/NavBar.jsx b/src/components/NavBar/NavBar.jsx index 1382d1e..6c849ab 100644 --- a/src/components/NavBar/NavBar.jsx +++ b/src/components/NavBar/NavBar.jsx @@ -33,7 +33,7 @@ const NavBar = () => { const [isHoveredLearn, setIsHoveredLearn] = useState(false); const [isHoveredBuild, setIsHoveredBuild] = useState(false); const [isHoveredCases, setIsHoveredCases] = useState(false); - const [isHoveredCommunity, setIsHoveredCommunity] = useState(false); + // const [isHoveredCommunity, setIsHoveredCommunity] = useState(false); const [windowWidth, setWindowWidth] = useState(window.innerWidth); const location = useLocation(); @@ -99,7 +99,9 @@ const NavBar = () => { > { WALLET { { { { { - + + + {/* setIsHoveredCommunity(false)} > @@ -689,7 +722,7 @@ const NavBar = () => { - + */}