diff --git a/web-next/app/[locale]/cookies/page.tsx b/web-next/app/[locale]/cookies/page.tsx index c76924d..0150fdb 100644 --- a/web-next/app/[locale]/cookies/page.tsx +++ b/web-next/app/[locale]/cookies/page.tsx @@ -1,6 +1,6 @@ import type { Metadata } from 'next' import { Link } from '@/i18n/navigation' -import { CookieConsentButtons } from '@/components/CookieConsent' +import { CookieConsentButtons, ConsentStatus } from '@/components/CookieConsent' export const metadata: Metadata = { title: 'Declaración de Cookies', @@ -163,6 +163,7 @@ export default function CookiesPage() { Tu estado de consentimiento

Puedes cambiar o retirar tu consentimiento en cualquier momento. Al contactarnos respecto a su consentimiento, por favor, indique la fecha de su consentimiento.

+

diff --git a/web-next/app/[locale]/layout.tsx b/web-next/app/[locale]/layout.tsx index 81a6295..728c873 100644 --- a/web-next/app/[locale]/layout.tsx +++ b/web-next/app/[locale]/layout.tsx @@ -7,6 +7,7 @@ import { Header } from '@/components/Header' import { Video } from '@/components/Video' import { Social } from '@/components/Social' import { Footer } from '@/components/Footer' +import { CookieBanner } from '@/components/CookieConsent' import '../globals.css' export function generateStaticParams() { @@ -73,6 +74,7 @@ export default async function LocaleLayout({ {children}