Skip to content

Commit

Permalink
🐛 fix(lib): direction of utilize tool
Browse files Browse the repository at this point in the history
  • Loading branch information
lwinmoepaing committed Oct 14, 2023
1 parent ba5a9ff commit 726061c
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 10 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Navbar from "@/components/Common/Navbar/Navbar";
import { bodyFont } from "@/fonts/fonts";
import { cn } from "@/lib/utils";
import { cn } from "@/utils";
import styles from "@/styles/styles";
import type { Metadata } from "next";
import APP_CONFIG from "@/config/config";
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/BodyText/BodyText.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { bodyFont } from "@/fonts/fonts";
import { cn } from "@/lib/utils";
import { cn } from "@/utils";
import { PropsWithChildren } from "react";

type TBodyText = PropsWithChildren<{
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/Container/Container.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cn } from "@/lib/utils";
import { cn } from "@/utils";
import styles from "@/styles/styles";
import { PropsWithChildren } from "react";

Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import MseLink from "@/components/Ui/MseLink/MseLink";
import MseLogo from "@/components/Ui/MseLogo/MseLogo";
import { cn } from "@/lib/utils";
import { cn } from "@/utils";
import Container from "../Container/Container";

const Navbar = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/TitleText/TitleText.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { titleFont } from "@/fonts/fonts";
import { cn } from "@/lib/utils";
import { cn } from "@/utils";
import { PropsWithChildren } from "react";

type TTitleText = PropsWithChildren<{
Expand Down
7 changes: 5 additions & 2 deletions src/components/MSE/HomeSection.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";
import { titleFont } from "@/fonts/fonts";
import { cn } from "@/lib/utils";
import { cn } from "@/utils";
import { Variants, motion, useInView } from "framer-motion";
import Link from "next/link";
import { ReactNode, useRef } from "react";
Expand Down Expand Up @@ -76,7 +76,10 @@ const HomeSection = () => {
)}
>
{title.map((title, index) => (
<motion.h2 key={`${title}_hero_title`} className={cn("mb-5 w-8/12 -rotate-[8deg]")}>
<motion.h2
key={`${title}_hero_title`}
className={cn("mb-5 w-8/12 -rotate-[8deg]")}
>
<AnimateText text={title} />
</motion.h2>
))}
Expand Down
4 changes: 2 additions & 2 deletions src/components/MSE/JoinSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import BodyText from "../Common/BodyText/BodyText";
import SquareBox from "../Ui/SquareBox/SquareBox";
import TitleText from "../Common/TitleText/TitleText";
import APP_CONFIG from "@/config/config";
import { cn } from "@/lib/utils";
import { cn } from "@/utils";
import FacebookArrows from "../Ui/Arrows/FacebookArrows";

const JoinSection = () => {
Expand Down Expand Up @@ -34,7 +34,7 @@ const JoinSection = () => {

<motion.div
className="w-[70px] hidden lg:block absolute bottom-[18px] right-[15px]"
initial={{ opacity: 0, x: -8, }}
initial={{ opacity: 0, x: -8 }}
animate={{ opacity: 0.7, x: 0, transition: { delay: 1 } }}
>
<FacebookArrows />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Ui/SquareBox/SquareBox.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cn } from "@/lib/utils";
import { cn } from "@/utils";
import { PropsWithChildren } from "react";
import styles from "@/styles/styles";

Expand Down

0 comments on commit 726061c

Please sign in to comment.