import styles from '../styles/Home.module.css' import { Page, Spacer, Text } from '@geist-ui/core' import Header from '../components/header' import { ThemeProps } from './_app' import Document from '../components/document' import Image from 'next/image' import ShiftBy from '../components/shift-by' import PageSeo from 'components/page-seo' export function getStaticProps() { const introDoc = process.env.WELCOME_CONTENT return { props: { introContent: introDoc, introTitle: process.env.WELCOME_TITLE, } } } type Props = ThemeProps & { introContent: string } const Home = ({ theme, changeTheme, introContent }: Props) => { return (
Welcome to Drift
) } export default Home