import axios from 'axios'; import { GetServerSideProps, NextPage } from 'next'; import React from 'react'; import type { Collection } from '../../../../server/models/Collection'; import CollectionDetails from '../../../components/CollectionDetails'; interface CollectionPageProps { collection?: Collection; } const CollectionPage: NextPage = ({ collection }) => { return ; }; export const getServerSideProps: GetServerSideProps = async (ctx) => { const response = await axios.get( `http://localhost:${process.env.PORT || 5055}/api/v1/collection/${ ctx.query.collectionId }`, { headers: ctx.req?.headers?.cookie ? { cookie: ctx.req.headers.cookie } : undefined, } ); return { props: { collection: response.data, }, }; }; export default CollectionPage;