fix: change hackathon header image & fix wrong api

This commit is contained in:
MTG2000
2022-02-10 20:48:35 +02:00
parent df79a34120
commit 18beaf0f39
5 changed files with 6 additions and 12 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

@@ -1,4 +1,4 @@
import Assets_Images_ExploreHeader1 from './images/explore_page_header_1.jfif'
import Assets_Images_ExploreHeader2 from './images/explore_page_header_2.jfif'
import Assets_Images_ExploreHeader1 from './images/explore_page_header_1.jfif'
import Assets_Images_ExploreHeader2 from './images/shock-the-web.png'
export {Assets_Images_ExploreHeader1,Assets_Images_ExploreHeader2}
export { Assets_Images_ExploreHeader1, Assets_Images_ExploreHeader2 }

View File

@@ -19,7 +19,7 @@ const headerLinks = [
img: Assets_Images_ExploreHeader2,
link: {
content: "Register Now",
url: "#",
url: "/hackathons/shock-the-web/",
},
},
];

View File

@@ -15,10 +15,7 @@ import {
} from "@apollo/client";
const client = new ApolloClient({
uri: process.env.NODE_ENV === 'development' ?
'https://xenodochial-goldstine-d09942.netlify.app/.netlify/functions/graphql'
:
'/.netlify/functions/graphql',
uri: 'https://xenodochial-goldstine-d09942.netlify.app/.netlify/functions/graphql',
cache: new InMemoryCache()
});