diff --git a/app/components/ui/footerCookieConsent.tsx b/app/components/ui/footerCookieConsent.tsx index 2791135f..ab7f352f 100644 --- a/app/components/ui/footerCookieConsent.tsx +++ b/app/components/ui/footerCookieConsent.tsx @@ -1,5 +1,7 @@ +// app/components/ui/FooterCookieConsent.tsx import React from "react"; -import Button from "./cookieButtons"; +import { Button } from "./button"; // Adjust the path if necessary + const FooterCookieConsent: React.FC = () => { const handleAccept = () => { console.log("Cookie consent accepted"); @@ -17,9 +19,7 @@ const FooterCookieConsent: React.FC = () => {

- - We Value your Privacy - + We Value your Privacy Our website uses cookies to enhance your browsing experience, provide personalized content, and analyze site traffic. By clicking @@ -27,13 +27,13 @@ const FooterCookieConsent: React.FC = () => {

- -
diff --git a/app/routes/preview.tsx b/app/routes/preview.tsx deleted file mode 100644 index 347d76a1..00000000 --- a/app/routes/preview.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import FooterCookieConsent from "~/components/ui/footerCookieConsent"; - -export default function Test() { - return ( -
-

Test FooterCookieConsent Component

- -
- ); -}