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




                                                               
                                                                


                                                              

                                                                   








                                                  
                                                                  
                    



                                                                              
                    
 
                                                
                                                     
                                                  
                                  
                                     
 
                                                                                       
                                        
                                       

                                                         
                                                                                               
                                              
                                      


                        




                        











                                            
import * as React from 'react';
import styled from 'styled-components';

import { Link } from 'ts/@next/components/button';
import { ChapterLink } from 'ts/@next/components/chapter_link';
import { Column, Section } from 'ts/@next/components/newLayout';
import { SiteWrap } from 'ts/@next/components/siteWrap';
import { Heading, Paragraph } from 'ts/@next/components/text';

import { addFadeInAnimation } from 'ts/@next/constants/animations';

interface Props {
    title: string;
    description: React.Node;
    linkLabel?: string;
    linkUrl?: string;
}

export const AboutPageLayout = (props: Props) => (
    <SiteWrap theme="light">
        <Section isFlex={true} maxWidth="1170px" wrapWidth="100%">
            <Column>
               <ChapterLink to="/next/about/mission">Our Mission</ChapterLink>
               <ChapterLink to="/next/about/team">Team</ChapterLink>
               <ChapterLink to="/next/about/press">Press</ChapterLink>
               <ChapterLink to="/next/about/jobs">Jobs</ChapterLink>
           </Column>

           <Column width="70%" maxWidth="800px">
               <Column width="100%" maxWidth="680px">
                   <AnimatedHeading size="medium">
                     {props.title}
                   </AnimatedHeading>

                   <AnimatedParagraph size="medium" marginBottom="60px" isMuted={0.65}>
                     {props.description}
                   </AnimatedParagraph>

                   {(props.linkLabel && props.linkUrl) &&
                       <AnimatedLink href={props.linkUrl} isNoBorder={true} isWithArrow={true}>
                             {props.linkLabel}
                       </AnimatedLink>
                   }
               </Column>
           </Column>
        </Section>

        {props.children}
    </SiteWrap>
);

const AnimatedHeading = styled(Heading)`
  ${addFadeInAnimation('0.5s')}
`;

const AnimatedParagraph = styled(Paragraph)`
  ${addFadeInAnimation('0.5s', '0.15s')}
`;

const AnimatedLink = styled(Link)`
  ${addFadeInAnimation('0.6s', '0.3s')}
`;