Terms conditions
This code implements a responsive Terms and Conditions page with a sticky scrollspy navigation menu using Material-UI in a React app.
terms-condition.tsx
import TermsCondition from '@/blocks/TermsCondition';
import ContainerWrapper from '@/components/ContainerWrapper';
/*************************** TERMS CONDITION - BREADCRUMBS ***************************/
// Terms Condition breadcrumbs
/*************************** TERMS CONDITION - DATA ***************************/
// Terms Condition data
/*************************** SECTIONS - TERMS CONDITION ***************************/
export default function TermsConditionPage() {
return (
<>
{/* other section */}
{/* terms condition section */}
<ContainerWrapper>
<TermsCondition />
</ContainerWrapper>
</>
);
}
Last updated