import { Box, Stack, Image, Text, Flex, Link } from '@chakra-ui/react' import { colors } from '../colors'; import { useEffect, useRef } from 'react'; import { motion, useInView } from 'framer-motion' function Salespoint() { const shopImages = [ { image: '/images/pp.png', link: 'https://www.pns.hk/zh-hk/all-brands/b/112546/%E7%8D%85%E7%90%83%E5%98%9C', }, { image: '/images/we.png', link: 'https://www.wellcome.com.hk/zh-hant/search?keyword=%E7%8D%85%E7%90%83%E5%98%9C&page=1', }, { image: '/images/hk.png', link: 'https://www.hktvmall.com/hktv/zh/search_a?keyword=%E7%8D%85%E7%90%83%E5%98%9C', }, ] const fbContainerRef = useRef(null); const titleRef = useRef(null); const isTitleInView = useInView(titleRef, { once: true }); // Load Facebook SDK and initialize the plugin useEffect(() => { // Add Facebook SDK if it doesn't exist if (!document.getElementById('facebook-jssdk')) { const script = document.createElement('script'); script.id = 'facebook-jssdk'; script.src = 'https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v18.0'; script.async = true; script.defer = true; document.body.appendChild(script); } // Parse XFBML when SDK is loaded const handleSDKLoad = () => { if ((window as any).FB && fbContainerRef.current) { (window as any).FB.XFBML.parse(fbContainerRef.current); } }; // Check if FB is already loaded if ((window as any).FB) { handleSDKLoad(); } else { // Listen for SDK load (window as any).fbAsyncInit = handleSDKLoad; } return () => { // Clean up (window as any).fbAsyncInit = undefined; }; }, []); return ( 銷售點 {shopImages.map((image, index) => ( ))} {/* Facebook Page Plugin */}
) } export default Salespoint;