style: added shadcn-ui

This commit is contained in:
Riccardo
2023-12-05 20:13:29 +01:00
parent 1b0919a460
commit 78de374cba
45 changed files with 1463 additions and 1340 deletions

View File

@@ -1,8 +1,9 @@
'use client';
import { CustomCard } from '../../components/custom/card';
export default function Privacy() {
return (
const body = (
<div>
<h1>Privacy Policy</h1>
<p>Last updated: December 03, 2023</p>
<p>
This Privacy Policy describes Our policies and procedures on the
collection, use and disclosure of Your information when You use the
@@ -411,4 +412,13 @@ export default function Privacy() {
</ul>
</div>
);
return (
<CustomCard
title='Privacy Policy'
description='Last updated: December 03, 2023'
content={body}
style='w-2/3'
/>
);
}