From a5db5b9dbeb68f010073e61fa0604dbce45c48ad Mon Sep 17 00:00:00 2001 From: Avior Date: Thu, 6 Feb 2020 00:39:09 +0100 Subject: [PATCH] Updated Signed-off-by: Avior --- components/Element.tsx | 16 +- components/Filters.tsx | 10 +- components/Footer.tsx | 16 +- components/Navbar.tsx | 2 +- components/Picture.tsx | 20 + package.json | 4 +- pages/[category]/[slug].tsx | 12 +- pages/_app.tsx | 11 +- pages/_document.tsx | 19 +- pages/_error.tsx | 10 +- public/favicon.ico | Bin 15086 -> 310219 bytes public/logo-white.svg | 3 + public/logo/192.png | 3 + public/logo/192.webp | Bin 0 -> 1472 bytes public/logo/32.png | 3 + public/logo/512.png | 3 + public/logo/512.webp | Bin 0 -> 3984 bytes public/logo/maskable_icon.png | 3 + public/manifest.json | 33 +- styl/include/_aileron.styl | 18 +- styl/include/_blobmoji.styl | 4 +- styl/include/_input.styl | 4 + tsconfig.json | 4 +- yarn.lock | 2231 ++++++++++++++++++++------------- 24 files changed, 1476 insertions(+), 953 deletions(-) create mode 100644 components/Picture.tsx create mode 100644 public/logo-white.svg create mode 100644 public/logo/192.png create mode 100644 public/logo/192.webp create mode 100644 public/logo/32.png create mode 100644 public/logo/512.png create mode 100644 public/logo/512.webp create mode 100644 public/logo/maskable_icon.png diff --git a/components/Element.tsx b/components/Element.tsx index d8ac5b9..7fed078 100644 --- a/components/Element.tsx +++ b/components/Element.tsx @@ -1,6 +1,7 @@ import Link from 'next/link' import React from 'react' import { ChevronRight } from 'react-feather' +import Picture from './Picture' interface Props { title: string @@ -37,11 +38,7 @@ export default class Element extends React.Component {
{this.props.image ? ( - - - - - //{this.props.alt}/ + //{this.props.alt}/ ) : (
)} @@ -53,7 +50,7 @@ export default class Element extends React.Component { {this.props.title} - +