Skip to content
Snippets Groups Projects
Commit e713e2ab authored by Eunsu Kim's avatar Eunsu Kim
Browse files

fix?

parent bf7a7559
No related branches found
No related tags found
No related merge requests found
Pipeline #531378 failed
"use client";
import React, {useRef} from "react";
import { useEffect, useState } from "react";
import React from "react";
import Hero from "@/components/hero";
import SectionContainer from "@/components/section";
import AnimatingText from "@/components/animate-text";
import AnimatedCounter from "@/components/animated-counter";
import IntroScreen from "@/components/intro-screen";
import Link from "next/link";
import { m, motion, Variants } from "framer-motion";
import { motion, Variants } from "framer-motion";
import { Button } from "@/components/ui/button";
const textVariants: Variants = {
......@@ -20,15 +18,6 @@ const textVariants: Variants = {
}
};
const imageVariants: Variants = {
offscreen: { opacity: 0, y: 50 },
onscreen: {
opacity: 1,
y: 0,
transition: { type: "spring", bounce: 0.25, duration: 0.8 }
}
};
const Home = () => {
return (
<>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment