import React from "react"; import { Flex, Heading } from "@chakra-ui/react"; import { getLayout, getLayoutProps } from "../src/layouts/InfoPageLayout"; import WhitepaperCard from "../src/components/molecules/WhitepaperCard"; import { AWS_ASSETS_PATH } from "../src/core/constants"; const Papers = () => { return ( Whitepapers ); }; Papers.getLayout = getLayout; export async function getStaticProps() { const metaTags = { title: "Moonstream: Whitepapers", description: "Whitepapers by moonstream.to", keywords: "blockchain, crypto, data, trading, smart contracts, ethereum, solana, transactions, defi, finance, decentralized, analytics, product, whitepapers", url: "https://www.moonstream.to/whitepapers", }; const layoutProps = getLayoutProps(); layoutProps.props.metaTags = { ...layoutProps.props.metaTags, ...metaTags }; return { ...layoutProps }; } export default Papers;