import { NextPage } from 'next'; import { serverSideTranslations } from 'next-i18next/serverSideTranslations'; import CartContent from '../../components/cart-content/CartContent'; const CartPage: NextPage = () => { return ; }; export async function getStaticProps({ locale }: any) { return { props: { ...(await serverSideTranslations(locale, ['cart'])), }, }; } export default CartPage;