This commit is contained in:
philipcheung 2025-03-16 00:35:39 +08:00
parent a14b206d25
commit a909854e4c
6 changed files with 9 additions and 17 deletions

1
.gitignore vendored
View File

@ -22,3 +22,4 @@ dist-ssr
*.njsproj
*.sln
*.sw?
.vercel

View File

@ -1,14 +1,7 @@
import {
Box,
Container,
Flex,
Heading,
Text,
Image,
VStack,
HStack,
SimpleGrid,
Center,
} from '@chakra-ui/react'
import Header from './components/header'

View File

@ -1,4 +1,4 @@
import { Box, Stack, Image, Flex, useBreakpointValue, Text, SimpleGrid } from '@chakra-ui/react'
import { Box, Stack, Image, Flex, useBreakpointValue, Text } from '@chakra-ui/react'
import { colors } from '../colors';
function Bestoil() {

View File

@ -1,16 +1,15 @@
import { Box, Stack, Image, Text, Flex, SimpleGrid } from '@chakra-ui/react'
import { colors } from '../colors';
import { useEffect, useRef, useState } from 'react';
import { } from '../colors';
import {useRef } from 'react';
import { motion, useInView } from 'framer-motion';
// Create motion versions of Chakra components
const MotionStack = motion(Stack);
const MotionImage = motion(Image);
const MotionBox = motion(Box);
function Compare() {
const compareRef = useRef(null);
const isInView = useInView(compareRef, { once: true, amount: 0.3 });
return (
<Box

View File

@ -1,4 +1,4 @@
import { Box, Stack, SimpleGrid, Image, Image as ChakraImage, Flex, useBreakpointValue } from '@chakra-ui/react'
import { Box, Stack, SimpleGrid, Image as ChakraImage, Flex, useBreakpointValue } from '@chakra-ui/react'
import { motion } from 'framer-motion'
function Hero1() {
const MotionImage = motion(ChakraImage);

View File

@ -4,11 +4,10 @@ import { useEffect, useRef, useState } from 'react';
import { motion, useInView, useAnimation } from 'framer-motion'
// Create motion components from Chakra UI components
const MotionBox = motion(Box);
const MotionFlex = motion(Flex);
const MotionImage = motion(Image);
const MotionText = motion(Text);
const MotionStack = motion(Stack);
function Hero2() {
const textStackRef = useRef<HTMLDivElement>(null);