import React from 'react'; import { Link } from 'react-router-dom'; import { motion } from 'framer-motion'; const Cookies: React.FC = () => { const cookieTypes = [ { type: "Essential Cookies", icon: "🔒", description: "These are necessary for basic site functions (like keeping items in your cart, secure login, etc.) and cannot be turned off without affecting the site.", canDisable: false }, { type: "Analytics Cookies", icon: "📊", description: "We use Google Analytics to learn how customers find and use our site. These cookies help us improve content, layout, and functionality.", canDisable: true, example: "Google Analytics" }, { type: "Marketing Cookies", icon: "🎯", description: "If you opt-in, we may use cookies to show you personalized ads or to measure ad performance (e.g. Facebook Pixel, Google AdWords). No personal information is stored – just anonymous data to track which ads work best.", canDisable: true, example: "Facebook Pixel, Google AdWords" } ]; return (
{/* Header */}
Legal Information Cookie
Policy
We use cookies and similar technologies to make our website work better for you. Cookies are small text files stored on your device. Here's how we use them and how you can control them. Last Updated: February 2, 2025
{/* What Are Cookies */}

What Are Cookies?

Cookies are small text files that websites store on your computer or mobile device when you visit them. They help the website remember information about your visit, like your preferred language, items in your shopping cart, and other settings. This makes your next visit easier and the site more useful to you.

{/* Cookie Types */}

Types of Cookies We Use

{cookieTypes.map((cookie, index) => (
{cookie.icon}

{cookie.type}

{cookie.description}

{cookie.example && (

Examples: {cookie.example}

)}
{cookie.canDisable ? 'Can be disabled' : 'Always active'}
))}
{/* Managing Cookies */}

Managing Your Cookie Preferences

You can control or disable cookies in your browser settings. However, disabling cookies may limit your ability to use some features (like staying logged in or completing a purchase).

By continuing to use our site without changing your settings, you consent to the use of cookies as described in this policy.

Browser Cookie Settings:

  • Chrome: Settings → Privacy and security → Cookies and other site data
  • Firefox: Preferences → Privacy & Security → Cookies and Site Data
  • Safari: Preferences → Privacy → Manage Website Data
  • Edge: Settings → Cookies and site permissions → Manage and delete cookies
{/* Third-Party Cookies */}

Third-Party Cookies

Some cookies on our site are set by third-party services we use, such as:

  • Google Analytics: To understand how visitors use our site
  • Payment Processors: To securely process transactions
  • Social Media Platforms: If you interact with embedded social media content

These third parties have their own privacy policies governing their use of your information. We recommend reviewing their policies to understand how they use cookies.

{/* Contact */}

Questions About Cookies?

For any questions about cookies or to opt-out of analytics tracking, please contact us at support@hotchpotshceramics.com

Contact Us
); }; export default Cookies;