import { Avatar, Badge, Box, Button, Container, Card, Grid, Heading, Image, Text, Flex } from 'theme-ui' import NextLink from 'next/link' import Head from 'next/head' import Meta from '@hackclub/meta' import Nav from '../components/nav' import SlideUp from '../components/slide-up' import Why from '../components/ship/why.mdx' import Icon from '../components/icon' import Posts from '../components/posts' import Footer from '../components/footer' import { timeSince } from '../lib/dates' import { orderBy, filter, take, map, uniq, reverse } from 'lodash' import { keyframes } from '@emotion/react' import { thousands } from '../lib/members' const ShipBadge = props => ( ) const waves = keyframes({ '0%': { backgroundPositionX: '0' }, '100%': { backgroundPositionX: '-100%' } }) const ShipPage = ({ posts = [] }) => ( <>