Skip to content

Commit

Permalink
chore:#9 경로 및 자잘한 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
frombozztoang committed Feb 22, 2024
1 parent 3910818 commit 2124862
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 14 deletions.
7 changes: 5 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,17 @@ export default function RootLayout({
return (
<html lang="en" className=" bg-main-background">
<body className="flex justify-center">
<figure className=" hidden tablet:flex tablet:h-screen tablet:items-center tablet:pr-[216px] transition-opacity duration-500 ease-in-out opacity-0 tablet:opacity-100 ">
<figure className="hidden tablet:flex tablet:h-screen tablet:items-center tablet:pr-[216px] transition-opacity duration-500 ease-in-out opacity-0 tablet:opacity-100">
<Image
className="w-419 h-198 object-contain "
src={logo}
alt="logo"
/>
</figure>
<main className="flex flex-col items-center tablet:flex-none w-fit ">
<main
id="modal"
className="flex flex-col items-center relative w-fit "
>
<header className="w-full mb-76">
<Navigation />
</header>
Expand Down
2 changes: 1 addition & 1 deletion src/components/organisms/searchBar/SearchBar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Image from "next/image";
import React, { useState } from "react";
import arrowDown from "../../../../public/icons/arrowDown.png";
import arrowDown from "@public/icons/arrowDown.png";
import SearchResult from "./SearchResult";

interface searchBarProps {
Expand Down
4 changes: 2 additions & 2 deletions src/components/templates/login/auth/Auth.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"use client";
import Image from "next/image";
import React, { useState } from "react";
import logo from "../../../../../public/icons/logo.png";
import check from "../../../../../public/icons/check.png";
import logo from "@public/icons/logo.png";
import check from "@public/icons/check.png";
import { AuthModalProps } from "@/types/Modal";
import AuthModal from "@/components/organisms/modal/auth/AuthModal";

Expand Down
4 changes: 2 additions & 2 deletions src/components/templates/login/main/Main.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"use client";
import Image from "next/image";
import React from "react";
import logo from "../../../../../public/icons/logo.png";
import loginImg from "../../../../../public/icons/loginImg.png";
import logo from "@public/icons/logo.png";
import loginImg from "@public/icons/loginImg.png";
import Link from "next/link";

const Main = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/templates/mypage/MyPage.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";
import DetailProfile from "@/components/atoms/profile/detailProfile/DetailProfile";
import test from "../../../../public/icons/testProfile.png";
import test from "@public/icons/testProfile.png";
import React, { useState } from "react";
import LetterToggle from "@/components/atoms/button/letterToggle/LetterToggle";
import Letter from "@/components/atoms/letter/Letter";
Expand Down
2 changes: 1 addition & 1 deletion src/components/templates/notice/Notice.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import NoticeList from "../../atoms/notice/noticeList/NoticeList";
import NoticeList from "@/components/atoms/notice/noticeList/NoticeList";
import React from "react";

const Notice = () => {
Expand Down
6 changes: 3 additions & 3 deletions src/components/templates/search/Search.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import SearchBar from "../../organisms/searchBar/SearchBar";
import React from "react";
import SearchProfile from "../../atoms/profile/searchProfile/SearchProfile";
import test from "../../../../public/icons/testProfile.png";

import test from "@public/icons/testProfile.png";
import SearchProfile from "@/components/atoms/profile/searchProfile/SearchProfile";

interface searchProps {
major: string;
Expand Down
2 changes: 1 addition & 1 deletion src/components/templates/setting/Setting.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";
import React, { useState } from "react";
import Image from "next/image";
import arrowRight from "../../../../public/icons/arrowRight.png";
import arrowRight from "@public/icons/arrowRight.png";
import Toggle from "@/components/atoms/button/toggle/Toggle";
import Link from "next/link";

Expand Down
2 changes: 1 addition & 1 deletion src/components/templates/social/main/Main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";

import React, { useState } from "react";
import test from "../../../../../public/icons/testProfile.png";
import test from "@public/icons/testProfile.png";
import Link from "next/link";
import MainProfile from "@/components/atoms/profile/mainProfile/MainProfile";
import SearchBar from "@/components/organisms/searchBar/SearchBar";
Expand Down

0 comments on commit 2124862

Please sign in to comment.