{
  "component": "footer",
  "name": "Modern Footer with Social Links",
  "slug": "footer-modern",
  "thumbnail": "/modules/uibuilder/assets/img/footer-modern.png",
  "html": "<footer class='bg-gradient-to-r from-blue-900 to-purple-900 text-white py-12'>\n  <div class='container mx-auto px-4'>\n    <div class='grid grid-cols-1 md:grid-cols-3 gap-8'>\n      <div>\n        {{#logo}}\n        <img src='{{logo}}' alt='Logo' class='h-12 mb-4'>\n        {{/logo}}\n        <h3 class='text-xl font-bold mb-2'>{{site_name}}</h3>\n        <p class='text-gray-300'>{{description}}</p>\n      </div>\n      <div>\n        <h4 class='text-lg font-semibold mb-4'>Liên hệ</h4>\n        <ul class='space-y-2'>\n          <li>Email: {{email}}</li>\n          <li>Phone: {{phone}}</li>\n        </ul>\n      </div>\n      <div>\n        <h4 class='text-lg font-semibold mb-4'>Theo dõi chúng tôi</h4>\n        <div class='flex space-x-4'>\n          {{#facebook_url}}\n          <a href='{{facebook_url}}' target='_blank' class='text-white hover:text-blue-400'>\n            <svg class='w-6 h-6' fill='currentColor' viewBox='0 0 24 24'><path d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/></svg>\n          </a>\n          {{/facebook_url}}\n          {{#twitter_url}}\n          <a href='{{twitter_url}}' target='_blank' class='text-white hover:text-blue-400'>\n            <svg class='w-6 h-6' fill='currentColor' viewBox='0 0 24 24'><path d='M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z'/></svg>\n          </a>\n          {{/twitter_url}}\n        </div>\n      </div>\n    </div>\n    <div class='border-t border-gray-700 mt-8 pt-8 text-center'>\n      <p class='text-sm text-gray-400'>© {{year}} {{site_name}}. All rights reserved.</p>\n    </div>\n  </div>\n</footer>",
  "css": "footer a { transition: color 0.3s ease; }\nfooter img { max-width: 200px; }",
  "config_schema": {
    "logo": {
      "type": "image",
      "label": "Logo",
      "default": "",
      "required": false
    },
    "site_name": {
      "type": "text",
      "label": "Tên website",
      "default": "My Company",
      "required": true
    },
    "description": {
      "type": "textarea",
      "label": "Mô tả",
      "default": "We are a leading company in our industry.",
      "required": false
    },
    "email": {
      "type": "email",
      "label": "Email",
      "default": "contact@example.com",
      "required": false
    },
    "phone": {
      "type": "text",
      "label": "Số điện thoại",
      "default": "+84 123 456 789",
      "required": false
    },
    "facebook_url": {
      "type": "url",
      "label": "Facebook URL",
      "default": "https://facebook.com",
      "required": false
    },
    "twitter_url": {
      "type": "url",
      "label": "Twitter URL",
      "default": "",
      "required": false
    },
    "year": {
      "type": "text",
      "label": "Năm",
      "default": "2025",
      "required": true
    }
  }
}

