Skip to content

Commit

Permalink
Cleaned up imports and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWearsHat committed Nov 1, 2024
1 parent ea0a167 commit 8e48c15
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
3 changes: 2 additions & 1 deletion apps/site/src/app/(home)/sections/FAQ/FAQ.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ $item-padding-x: 3rem;
padding: $mobile-item-padding-y $mobile-item-padding-x;
}

.faq-header, .faq-header > * {
.faq-header,
.faq-header > * {
font-weight: 600;
}

Expand Down
14 changes: 5 additions & 9 deletions apps/site/src/app/schedule/DayOne/DayOne.tsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
"use client";
import Image from "next/image";

import EventCircle from "../Assets/Circle";

import styles from "./DayOne.module.scss";

import React, { useEffect, useState } from "react";
import Map1 from "@/assets/images/map1/map_1.svg";
import MobileMap from "@/assets/images/map1/mobile_map.svg";
import MobilePath from "@/assets/images/map1/mobile_path.png";
import Path from "@/assets/images/map1/map_1_path.png";

import clsx from "clsx";
import styles from "./DayOne.module.scss";
import Image from "next/image";
import EventCircle from "../Assets/Circle";
import { useWindowSize } from "react-use";
import useWindowWidth from "@/lib/useWindowWidth";

interface DayOneProps {
schedule: Array<any>;
time: number;
}

const DayOne: React.FC<DayOneProps> = ({ schedule, time }) => {
// const size = useWindowWidth();
const positions = [
{ top: "-5px", left: "-10px" },
{ top: "calc(36% - 25px)", left: "50%" },
Expand Down
13 changes: 7 additions & 6 deletions apps/site/src/app/schedule/DayThree/DayThree.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
"use client";

import React, { useEffect, useState } from "react";
import Map3 from "@/assets/images/map3/map_3.svg";
import Path from "@/assets/images/map3/map_3_path.png";

import clsx from "clsx";
import styles from "./DayThree.module.scss";
import React from "react";
import Image from "next/image";

import EventCircle from "../Assets/Circle";
import useWindowWidth from "@/lib/useWindowWidth";

import styles from "./DayThree.module.scss";

import Map3 from "@/assets/images/map3/map_3.svg";
import Path from "@/assets/images/map3/map_3_path.png";

interface DayThreeProps {
schedule: Array<any>;
time: number;
Expand Down
14 changes: 8 additions & 6 deletions apps/site/src/app/schedule/DayTwo/DayTwo.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
"use client";

import React, { useEffect, useState } from "react";
import Map2 from "@/assets/images/map2/map_2.svg";
import Path from "@/assets/images/map2/map_2_path.png";
import MobilePath from "@/assets/images/map2/map_2_path_mobile.png";

import styles from "./DayTwo.module.scss";
import React from "react";
import Image from "next/image";

import EventCircle from "../Assets/Circle";
import useWindowWidth from "@/lib/useWindowWidth";

import styles from "./DayTwo.module.scss";

import Map2 from "@/assets/images/map2/map_2.svg";
import Path from "@/assets/images/map2/map_2_path.png";
import MobilePath from "@/assets/images/map2/map_2_path_mobile.png";

interface DayTwoProps {
schedule: Array<any>;
time: number;
Expand Down

0 comments on commit 8e48c15

Please sign in to comment.