| 12345678910111213141516171819202122232425 |
- import nookies from 'nookies';
- import CheckoutContent from '../../components/checkout-content/CheckoutContent';
-
- const CheckoutPage = () => {
- return <CheckoutContent></CheckoutContent>;
- };
-
- export const getServerSideProps = async (ctx) => {
- const cookies = nookies.get(ctx);
-
- if (!cookies['checkout-session']) {
- return {
- redirect: {
- destination: '/cart',
- permanent: false,
- },
- };
- }
-
- return {
- props: {},
- };
- };
-
- export default CheckoutPage;
|