Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed public/assets/img/img-graphic-logo.png
Binary file not shown.
Binary file added public/assets/img/img-graphic-logo.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/img/img-style-cute.png
Binary file not shown.
Binary file added public/assets/img/img-style-cute.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/img/img-style-friendly.png
Binary file not shown.
Binary file added public/assets/img/img-style-friendly.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/img/img-style-trust.png
Binary file not shown.
Binary file added public/assets/img/img-style-trust.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
70 changes: 0 additions & 70 deletions src/components/Home/Home.tsx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { MemoryRouter } from "react-router-dom";

import Navbar from "@/components/common/Navbar/Navbar";
import Navbar from "@/components/Navbar/Navbar";
import Icon from "@/components/ui/Icon/Icon";
import Text from "@/components/ui/Text/Text";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@ import type { ButtonHTMLAttributes, PropsWithChildren } from "react";

import classNames from "classnames";

import styles from "@/components/common/Navbar/Navbar.module.scss";
import styles from "@/components/Navbar/Navbar.module.scss";

interface NavbarProps extends PropsWithChildren {
className?: string;
}

const Navbar = ({ children, className }: NavbarProps) => {
return <div className={classNames(styles.Navbar, className)}>{children}</div>;
const Navbar = ({ children }: PropsWithChildren) => {
return <div className={styles.Navbar}>{children}</div>;
};

Navbar.LeftButton = ({
Expand Down
39 changes: 0 additions & 39 deletions src/components/RecognitionFail/RecognitionFail.tsx

This file was deleted.

121 changes: 0 additions & 121 deletions src/components/SelectStyle/SelectStyle.tsx

This file was deleted.

86 changes: 0 additions & 86 deletions src/components/SelectTag/SelectTag.tsx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ModalProps } from "@/components/HomeNavigateConfirmModal/HomeNavigateConfirmModal";
import styles from "@/components/SelectStyle/StyleExampleModal.module.scss";
import styles from "@/components/StyleExampleModal/StyleExampleModal.module.scss";
import Icon from "@/components/ui/Icon/Icon";
import Modal from "@/components/ui/Modal/Modal";
import Text from "@/components/ui/Text/Text";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as Dialog from "@radix-ui/react-dialog";
import * as VisuallyHidden from "@radix-ui/react-visually-hidden";
import classNames from "classnames";

import styles from "@/components/SelectTag/TagSheet/TagSheet.module.scss";
import styles from "@/components/TagSheet/TagSheet.module.scss";
import Button from "@/components/ui/Button/Button";
import Icon from "@/components/ui/Icon/Icon";
import Input from "@/components/ui/Input/Input";
Expand Down
32 changes: 0 additions & 32 deletions src/pages/HomePage.tsx

This file was deleted.

Loading