Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ automatic_scaling:

env_variables:
NEXT_PUBLIC_CROWDFUNDING_API: https://crowdfunding-api-dot-crowdfunding-380517.de.r.appspot.com/api/v1
NEXT_PUBLIC_CONTRACT_ADDRESS_CF: 0x5C50243490a612cE56678fbBDDFFbAe91B2fB506
NEXT_PUBLIC_CONTRACT_ADDRESS_LT: 0xe6b8a5CF854791412c1f6EFC7CAf629f5Df1c747
NEXT_PUBLIC_CONTRACT_ADDRESS_CF: 0x848b92662f67971cf92ce0214107bBDA90316cda
NEXT_PUBLIC_CONTRACT_ADDRESS_LT: 0xB6434EE024892CBD8e3364048a259Ef779542475

handlers:
- url: /.*
Expand Down
Binary file removed assets/background.gif
Binary file not shown.
Binary file added assets/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions pages/index.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Header, CardSkeleton, Project, Input, Pagination } from "components";
import { fetchCampaigns } from "utils/fetch";
import { calculatePages } from "utils/pagination";
import { QUERIES, SEARCH, NUM_OF_ELEMENTS_MAIN, ROUTES } from "../constants";
import background from "assets/background.gif";
import background from "assets/background.png";
import add from "assets/icons/add.svg";

import {
Expand Down Expand Up @@ -60,7 +60,7 @@ export default function Home() {
<Main>
<Header />

<PlanetGIF src={background} alt="Logo" height={1200} width={2200} />
<PlanetGIF src={background} alt="Logo" />

<TitleContainer>
<Title>CROWD</Title>
Expand Down
5 changes: 2 additions & 3 deletions styles/Home.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ export const Title = styled.span`
export const PlanetGIF = styled(Image)`
mix-blend-mode: screen;
position: absolute;
top: -300px;
right: -450px;
margin-top: 40px;
right: 20%;

`;

export const Grid = styled.div`
Expand Down