Skip to content

Instantly share code, notes, and snippets.

View manticorevault's full-sized avatar
🤓
Working on new projects!

Artur Serra manticorevault

🤓
Working on new projects!
View GitHub Profile
@manticorevault
manticorevault / gist:deb572c1465790eb54db9970a682d6e7
Created February 19, 2021 19:46
Learn to deploy a smart contract on Celo
Celo Address:
0x639578Ad54286a480484a56b88351FCb9fc98e4E
.landing {
background-image: url('./../../assets/1_CMO3Tib5PP0zC1gtDVUj_Q.jpeg');
margin-top: 0em;
height: 70vh;
}
import React, { Component } from 'react';
import './styles.scss';
import { getAllprojects } from './../../services/project';
import { Link } from 'react-router-dom';
import ProjectsList from './../../components/ProjectList';
import Fact from './../../components/Fact';
class HomeView extends Component {
constructor(props) {
super(props);
import React from 'react';
import { Link } from 'react-router-dom';
import './style.scss';
import formatDate from './../../helper/formatDate';
import ProgressBar from './../../components/ProgressBar';
const ProjectsList = (props) => {
return (
<div className='max-w-xs rounded overflow-hidden shadow-lg my-2'>
{props.projects.map((project) => (

logo_ironhack_blue 7

General guidelines for labs/assignments

In this document, you will find all the steps you should follow when working on the labs (in the prework and during the bootcamp).

Step 1: Fork the repository

The majority of time, you will have to start the process with forking. Just a quick reminder on what is the process of forking.