1/* 2Constants and other configuration that impact the overall 3look of all of the pages. 4*/ 5 6export const MAX_WIDTH = "1000px"; 7 8export const SHARE_MAX_WIDTH = "1100px"; 9 10export const MAX_WIDTH_LANDING = "1200px"; 11 12// Return this in getServerSideProps to trigger displaying the 404 page. 13export const NOT_FOUND = { notFound: true } as const; 14 15