aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/@next/components/siteWrap.tsx
blob: 406f724f5d6873c57795a6eb1742b1355bfbdd7b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                               
                                       
                                                              
                                                    
                                                    




                 
                                                            





                             
                
 
            
                  
             
 
               
       
    

  

                         


                           

  
                    
import * as React from 'react';
import styled from 'styled-components';
import { GlobalStyles } from 'ts/@next/constants/globalStyle';
import { Header } from 'ts/@next/components/header';
import { Footer } from 'ts/@next/components/footer';

interface Props {

}

const SiteWrap: React.StatelessComponent<Props> = props => {
  const { children } = props;

  return (
    <>
      <GlobalStyles />

      <Header />

      <Main>
        {children}
      </Main>

      <Footer/>
    </>
  );
};

const Main = styled.main`
  border: 1px solid blue;
  width: calc(100% - 60px);
  max-width: 1500px;
  margin: 0 auto;
`;

export { SiteWrap };