Files
protekauto-frontend/src/pages/profile-cookie-settings.tsx

34 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import Head from 'next/head';
import LKMenu from '@/components/LKMenu';
import CookieSettings from '@/components/profile/CookieSettings';
const ProfileCookieSettingsPage: React.FC = () => {
return (
<>
<Head>
<title>Настройки cookies | Личный кабинет | ПротекАвто</title>
<meta name="description" content="Управление настройками файлов cookie в личном кабинете" />
<meta name="robots" content="noindex, nofollow" />
</Head>
<div className="min-h-screen bg-gray-50">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div className="flex gap-8 max-md:flex-col">
{/* Боковое меню */}
<div className="w-80 max-md:w-full">
<LKMenu />
</div>
{/* Основной контент */}
<div className="flex-1">
<CookieSettings />
</div>
</div>
</div>
</div>
</>
);
};
export default ProfileCookieSettingsPage;