mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-10 15:30:40 +00:00
29 lines
908 B
JavaScript
29 lines
908 B
JavaScript
// Copyright (C) 2017-2022 Smart code 203358507
|
|
|
|
const React = require('react');
|
|
const { Image, HorizontalNavBar } = require('stremio/common');
|
|
const styles = require('./styles');
|
|
|
|
const NotFound = () => {
|
|
return (
|
|
<div className={styles['not-found-container']}>
|
|
<HorizontalNavBar
|
|
className={styles['nav-bar']}
|
|
title={'Page not found'}
|
|
backButton={true}
|
|
fullscreenButton={true}
|
|
navMenu={true}
|
|
/>
|
|
<div className={styles['not-found-content']}>
|
|
<Image
|
|
className={styles['not-found-image']}
|
|
src={require('/images/empty.png')}
|
|
alt={' '}
|
|
/>
|
|
<div className={styles['not-found-label']}>Page not found!</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
module.exports = NotFound;
|