aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/pages/not_found.tsx
blob: 0a6ec071c48125e384281b74d1d2637ba945521c (plain) (tree)
1
2
3
4
5

                               
                                              
                                                       
                                  
















                                                                             
                                                                                    



                                                         
                                                                                 








                                                                                                   
                          



                  
import * as _ from 'lodash';
import * as React from 'react';
import { Footer } from 'ts/components/footer';
import { TopBar } from 'ts/components/top_bar/top_bar';
import { Styles } from 'ts/types';

export interface NotFoundProps {
    location: Location;
}

interface NotFoundState {}

const styles: Styles = {
    thin: {
        fontWeight: 100,
    },
};

export class NotFound extends React.Component<NotFoundProps, NotFoundState> {
    public render() {
        return (
            <div>
                <TopBar blockchainIsLoaded={false} location={this.props.location} />
                <div className="mx-auto max-width-4 py4">
                    <div className="center py4">
                        <div className="py4">
                            <div className="py4">
                                <h1 style={{ ...styles.thin }}>404 Not Found</h1>
                                <div className="py1">
                                    <div className="py3">
                                        Hm... looks like we couldn't find what you are looking for.
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <Footer />
            </div>
        );
    }
}