Path: blob/master/src/packages/next/pages/support/new.tsx
1450 views
import { Layout } from "antd";12import Footer from "components/landing/footer";3import Head from "components/landing/head";4import Header from "components/landing/header";5import Create from "components/support/create";6import { Customize } from "lib/customize";7import withCustomize from "lib/with-customize";89export default function Preferences({ customize }) {10return (11<Customize value={customize}>12<Head title="New Support Ticket" />13<Layout>14<Header page="support" subPage="new" />15<Create />16<Footer />17</Layout>18</Customize>19);20}2122export async function getServerSideProps(context) {23return await withCustomize({ context }, { name: true });24}252627