Removed Binas
parent
ba75ef4c80
commit
2779e07851
@ -1,2 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow: /binas
|
||||
Disallow:
|
@ -1,37 +0,0 @@
|
||||
import Page from '@components/Page';
|
||||
import Layout from '@components/Layout';
|
||||
|
||||
import React, { Component } from 'react';
|
||||
|
||||
class Binas extends Component {
|
||||
links: string[];
|
||||
|
||||
constructor(props: unknown) {
|
||||
super(props);
|
||||
|
||||
this.links = [];
|
||||
|
||||
for (let i = 1; i < 305; i++) {
|
||||
this.links.push(this.link(i));
|
||||
}
|
||||
}
|
||||
|
||||
link = (page: number): string =>
|
||||
`https://cdp.contentdelivery.nu/1fa0c165-3b6c-4c5b-acee-a231157e66a3/20160908101125/extract/assets/img/layout/${page}.jpg`;
|
||||
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<Page title="Binas" description="Voor wanneer je effe de binas nodig hebt">
|
||||
<Layout>
|
||||
<div className="binas">
|
||||
{this.links.map((link, i) => (
|
||||
<img key={i} src={link} alt="" />
|
||||
))}
|
||||
</div>
|
||||
</Layout>
|
||||
</Page>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Binas;
|
@ -1,31 +0,0 @@
|
||||
.binas {
|
||||
padding-top: 6rem;
|
||||
|
||||
img {
|
||||
border: 0.1rem solid var(--borders);
|
||||
border-radius: 5px;
|
||||
|
||||
max-width: 100vw;
|
||||
|
||||
@media screen and (min-width: 0px) {
|
||||
height: 55rem;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 300px) {
|
||||
height: 70rem;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
height: 85rem;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 900px) {
|
||||
height: 100rem;
|
||||
}
|
||||
|
||||
margin: auto;
|
||||
display: block;
|
||||
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue