-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Feature/#84
- Loading branch information
Showing
14 changed files
with
92 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export { default as NoDataImage } from "./no-data.png"; | ||
export { default as Category1 } from "./category_1.png"; | ||
export { default as Category2 } from "./category_2.png"; | ||
export { default as Category3 } from "./category_3.png"; | ||
export { default as Category4 } from "./category_4.png"; | ||
export { default as DefaultProfile } from "./default_profile.png"; | ||
export { default as DefaultThumbnail } from "./default_thumbnail.png"; | ||
export { default as BannerImage } from "./banner.png"; | ||
export { default as Sample } from "./sample.jpg"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,27 @@ | ||
import Categorty1 from "@assets/images/category_1.png"; | ||
import Categorty2 from "@assets/images/category_2.png"; | ||
import Categorty3 from "@assets/images/category_3.png"; | ||
import Categorty4 from "@assets/images/category_4.png"; | ||
import { Category1, Category2, Category3, Category4 } from "@assets/images"; | ||
import { Category } from "@type/response"; | ||
|
||
export const CATEGORYS: Category[] = [ | ||
{ | ||
id: 1, | ||
name: "벌레잡기", | ||
imageUrl: Categorty1, | ||
imageUrl: Category1, | ||
}, | ||
{ | ||
id: 2, | ||
name: "반려동물 산책하기", | ||
imageUrl: Categorty2, | ||
imageUrl: Category2, | ||
}, | ||
{ | ||
id: 3, | ||
name: "사다주기", | ||
subscribe: "필요한 물건 사다주세요!", | ||
imageUrl: Categorty3, | ||
imageUrl: Category3, | ||
}, | ||
{ | ||
id: 4, | ||
name: "기타", | ||
subscribe: "다른 심부름 부탁할래요!", | ||
imageUrl: Categorty4, | ||
imageUrl: Category4, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export { default as DEFAULT_THUMBNAIL } from "@assets/images/default_thumbnail.png"; | ||
export { default as DEFAULT_PROFILE } from "@assets/images/default_profile.png"; | ||
export { DefaultThumbnail as DEFAULT_THUMBNAIL } from "@assets/images"; | ||
export { DefaultProfile as DEFAULT_PROFILE } from "@assets/images"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from "react"; | ||
import styled from "@emotion/styled"; | ||
import CustomScreenHelmet from "@components/CustomScreenHelmet"; | ||
|
||
type DescriptionProps = {}; | ||
|
||
export default function Description({}: DescriptionProps) { | ||
return ( | ||
<DescriptionWrapper> | ||
<CustomScreenHelmet title="크리스틴화이팅" /> | ||
</DescriptionWrapper> | ||
); | ||
} | ||
|
||
const DescriptionWrapper = styled.div``; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters