Skip to content

Commit

Permalink
fix: added ease and moved component
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleryy committed Nov 3, 2023
1 parent 30c8afd commit 912e496
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/site/src/app/(home)/sections/Landing/Landing.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";
import ApplyButton from "./ApplyButton";
import Title from "@/views/Home/components/Title/Title";
import Title from "@/app/(home)/sections/Landing/Title";
import styles from "./Landing.module.scss";

const Landing = () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { motion, Variants } from "framer-motion";
import { cubicBezier, motion, Variants } from "framer-motion";
import styles from "./Title.module.scss";

export default function Title() {
Expand All @@ -12,6 +12,7 @@ export default function Title() {
staggerChildren: 0.2,
pathLength: {
duration: 0.6,
ease: cubicBezier(0.5, 1, 0.89, 1),
},
strokeOpacity: {
duration: 0.05,
Expand Down

0 comments on commit 912e496

Please sign in to comment.