diff --git a/src/pages/privacy.tsx b/src/pages/privacy.tsx new file mode 100644 index 000000000..144d4a95f --- /dev/null +++ b/src/pages/privacy.tsx @@ -0,0 +1,23 @@ +import { ComponentWrapperPage } from '@/components/near-org/ComponentWrapperPage'; +import { privacyDomainName } from '@/config'; +import { useBosComponents } from '@/hooks/useBosComponents'; +import { useDefaultLayout } from '@/hooks/useLayout'; +import type { NextPageWithLayout } from '@/utils/types'; + + +const PrivacyPage: NextPageWithLayout = () => { + const components = useBosComponents(); + return ( + + ); + }; + + PrivacyPage.getLayout = useDefaultLayout; + + export default PrivacyPage \ No newline at end of file