Built with Gitpages
Example page built with Gitpages ⭐️
Gitpages is built to save you time
This is just an example page of what can be done. You choose the blocks, theme and order.
- Time it takes to set up
- 20s
- Signed up
- 100
- Projects offered
- 100m+
Gitpages saves you time
Features
You can enter your features here. Here are some examples.
-
Feature 1
- Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
-
Feature 2
- Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
-
Feature 3
- Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
-
Feature 4
- Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
This is an example of the code block
Write some descriptions about what your code can do, and show it off with a code example. You can choose the language you want your code to render in!
Example of Component.jsx
1import React from "react";
2import uniquePropHOC from "./lib/unique-prop-hoc";
3
4class Expire extends React.Component {
5 constructor(props) {
6 super(props);
7 this.state = { component: props.children }
8 }
9 componentDidMount() {
10 setTimeout(() => {
11 this.setState({
12 component: null
13 });
14 }, this.props.time || this.props.seconds * 1000);
15 }
16 render() {
17 return this.state.component;
18 }
19}
20
21export default uniquePropHOC(["time", "seconds"])(Expire);
22

"Gitpages was built to help people around the world create awesome landing pages within seconds. I hope this page example gives you an insight into what is possible"