last updated

This commit is contained in:
2025-03-19 19:39:18 +08:00
parent bcf1a39bea
commit 53e3f86b10
12 changed files with 42 additions and 22 deletions

View File

@@ -1,4 +1,4 @@
import { Box, Stack, Image, Text, Flex, Link } from '@chakra-ui/react'
import {Stack, Image, Text, Flex, Link } from '@chakra-ui/react'
import { colors } from '../colors';
import { useEffect, useRef } from 'react';
import { motion, useInView } from 'framer-motion'
@@ -114,7 +114,7 @@ function Salespoint() {
</Flex>
{/* Facebook Page Plugin */}
<motion.div
{/* <motion.div
initial={{ opacity: 0, scale: 0.9 }}
whileInView={{ opacity: 1, scale: 1 }}
viewport={{ once: true }}
@@ -141,7 +141,24 @@ function Salespoint() {
data-tabs="timeline"
></div>
</Box>
</motion.div>
</motion.div> */}
<Stack
my={15}
ml={2}
>
<Link href={"https://www.facebook.com/profile.php?id=100064320806613"}
_focus={{ outline: 'none', boxShadow: 'none' }}
_active={{ outline: 'none', boxShadow: 'none' }}>
<Image
src={'/images/facebook_2.webp'}
alt="salespoint"
w={"400px"}
loading='lazy'
/>
</Link>
</Stack>
</Stack>
)
}