Skip to content

Commit

Permalink
fix: remove sass and change file type from .scss to .css
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouissance-seeker committed Feb 20, 2024
1 parent b3bf5b9 commit 4cfb689
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 25 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"react-dom": "^18",
"react-icons": "^5.0.1",
"recoil": "^0.7.7",
"sass": "^1.70.0",
"server-only": "^0.0.1",
"sharp": "^0.33.2",
"swiper": "^11.0.5",
Expand Down
24 changes: 3 additions & 21 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/app/components/Speakers/SpeakerCard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { TSpeakerCard } from "@/types/home/speakerCard.type";
import Image from "next/image";
import SpeakerSocials from "./SpeakerSocials";
import styles from "./styles.module.scss";
import styles from "./styles.module.css";

const SpeakerCard = ({
avatar,
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/Speakers/Speakers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { speakersData } from "@/data/speakersData";
import { Fragment } from "react";
import { RiMicLine } from "react-icons/ri";
import SpeakerCard from "./SpeakerCard";
import styles from "./Speakers.styles.module.scss";
import styles from "./Speakers.styles.module.css";

export default function Speakers() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/Timeline/Timeline.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import clsx from "clsx";
import Image from "next/image";
import Link from "next/link";
import styles from "./Timeline.styles.module.scss";
import styles from "./Timeline.styles.module.css";
import { TimelineItemType } from "./Timeline.types";
import { confDayTimeline, nightTimeline } from "./data";

Expand Down

0 comments on commit 4cfb689

Please sign in to comment.