Skip to content

Commit

Permalink
Merge pull request #1349 from Pawar7349/add-privacy-policy
Browse files Browse the repository at this point in the history
Add static Privacy Policy page
  • Loading branch information
gagdiez authored Jan 4, 2025
2 parents 7c76569 + 670d2ec commit c480c04
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/pages/privacy.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<ComponentWrapperPage
src={components.nearOrg.privacyPage}
meta={{ title: 'Privacy Policy', description: '' }}
componentProps={{
privacyDomainName,
}}
/>
);
};

PrivacyPage.getLayout = useDefaultLayout;

export default PrivacyPage

0 comments on commit c480c04

Please sign in to comment.