This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use client"; | |
import { motion } from "framer-motion"; | |
import React, { useState, useEffect } from "react"; | |
const CounterTime: React.FC = () => { | |
const [time, setTime] = useState<number>(0); | |
useEffect(() => { | |
const interval = setInterval(() => { | |
setTime((prevTime) => (prevTime < 12 ? prevTime + 1 : 0)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { motion } from 'framer-motion' | |
import React from 'react' | |
const images = [ | |
{ | |
src: 'https://a0.muscache.com/im/pictures/miso/Hosting-2810308/original/a653d85a-1a97-45d7-a213-78ef2286122a.jpeg?im_w=720', | |
alt: 'Tree' | |
}, | |
{ | |
src: 'https://a0.muscache.com/im/pictures/2cc58022-2004-4034-a281-22fb622e7461.jpg?im_w=720', |