advantages section

This commit is contained in:
2025-11-02 13:09:26 +08:00
parent 0b69188997
commit 0255ea7c8d
15 changed files with 152 additions and 2 deletions

View File

@@ -2,7 +2,6 @@ import { Box, Stack, Image, Flex, Text } from '@chakra-ui/react'
import { useState } from 'react'
import { motion } from 'framer-motion'
const MotionStack = motion.create(Stack)
const MotionImage = motion.create(Image)
const MotionFlex = motion.create(Flex)
const MotionBox = motion.create(Box)
@@ -96,7 +95,7 @@ function Info() {
viewport={{ once: true, amount: 0.3 }}
transition={{ duration: 0.8, delay: 0.2, ease: "easeOut" }}
>
{infoData.map((info, index) => (
{infoData.map((info) => (
<Box
key={info.id}
w={{ base: '20vw', sm: '110px', md: '150px', lg: '150px', xl: '150px' }}