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.
18 lines
493 B
TypeScript
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);
|