Files
myeasycms-v2/apps/web/app/(marketing)/(legal)/cookie-policy/page.tsx
giancarlo e7f2660032 Update UI design across multiple pages and components
Several changes have been made to improve the user interface and enhance the user experience. This includes redesigning Auth buttons, modifying website layouts and routing, tweaking heading and text sizes for clarity, and revamping the marketing, documentation, and pricing pages. These changes collectively contribute to a cleaner, more concise and navigable interface.
2024-04-09 13:35:12 +08:00

18 lines
493 B
TypeScript

import { SitePageHeader } from '~/(marketing)/_components/site-page-header';
import { withI18n } from '~/lib/i18n/with-i18n';
function CookiePolicyPage() {
return (
<div>
<div className={'container mx-auto'}>
<SitePageHeader
title={`Cookie Policy`}
subtitle={`This is the cookie policy page. It's a great place to put information about the cookies your site uses.`}
/>
</div>
</div>
);
}
export default withI18n(CookiePolicyPage);