edited
This commit is contained in:
parent
a14b206d25
commit
a909854e4c
|
@ -22,3 +22,4 @@ dist-ssr
|
||||||
*.njsproj
|
*.njsproj
|
||||||
*.sln
|
*.sln
|
||||||
*.sw?
|
*.sw?
|
||||||
|
.vercel
|
||||||
|
|
|
@ -1,14 +1,7 @@
|
||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
Container,
|
Container,
|
||||||
Flex,
|
|
||||||
Heading,
|
|
||||||
Text,
|
Text,
|
||||||
Image,
|
|
||||||
VStack,
|
|
||||||
HStack,
|
|
||||||
SimpleGrid,
|
|
||||||
Center,
|
|
||||||
} from '@chakra-ui/react'
|
} from '@chakra-ui/react'
|
||||||
|
|
||||||
import Header from './components/header'
|
import Header from './components/header'
|
||||||
|
|
|
@ -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';
|
import { colors } from '../colors';
|
||||||
|
|
||||||
function Bestoil() {
|
function Bestoil() {
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
import { Box, Stack, Image, Text, Flex, SimpleGrid } from '@chakra-ui/react'
|
import { Box, Stack, Image, Text, Flex, SimpleGrid } from '@chakra-ui/react'
|
||||||
import { colors } from '../colors';
|
import { } from '../colors';
|
||||||
import { useEffect, useRef, useState } from 'react';
|
import {useRef } from 'react';
|
||||||
import { motion, useInView } from 'framer-motion';
|
import { motion, useInView } from 'framer-motion';
|
||||||
|
|
||||||
// Create motion versions of Chakra components
|
// Create motion versions of Chakra components
|
||||||
const MotionStack = motion(Stack);
|
|
||||||
const MotionImage = motion(Image);
|
const MotionImage = motion(Image);
|
||||||
const MotionBox = motion(Box);
|
|
||||||
|
|
||||||
function Compare() {
|
function Compare() {
|
||||||
const compareRef = useRef(null);
|
const compareRef = useRef(null);
|
||||||
const isInView = useInView(compareRef, { once: true, amount: 0.3 });
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
|
|
|
@ -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'
|
import { motion } from 'framer-motion'
|
||||||
function Hero1() {
|
function Hero1() {
|
||||||
const MotionImage = motion(ChakraImage);
|
const MotionImage = motion(ChakraImage);
|
||||||
|
|
|
@ -4,11 +4,10 @@ import { useEffect, useRef, useState } from 'react';
|
||||||
import { motion, useInView, useAnimation } from 'framer-motion'
|
import { motion, useInView, useAnimation } from 'framer-motion'
|
||||||
|
|
||||||
// Create motion components from Chakra UI components
|
// Create motion components from Chakra UI components
|
||||||
const MotionBox = motion(Box);
|
|
||||||
const MotionFlex = motion(Flex);
|
|
||||||
const MotionImage = motion(Image);
|
const MotionImage = motion(Image);
|
||||||
const MotionText = motion(Text);
|
const MotionText = motion(Text);
|
||||||
const MotionStack = motion(Stack);
|
|
||||||
|
|
||||||
function Hero2() {
|
function Hero2() {
|
||||||
const textStackRef = useRef<HTMLDivElement>(null);
|
const textStackRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
Loading…
Reference in New Issue