diff --git a/src/pages/Category/CostEffect/index.tsx b/src/pages/Category/CostEffect/index.tsx index 2438ce8..9510116 100644 --- a/src/pages/Category/CostEffect/index.tsx +++ b/src/pages/Category/CostEffect/index.tsx @@ -18,7 +18,7 @@ function CostEffect() { layout="responsive" /> - + {/* */}
{storeData.가성비.map((store) => ( @@ -74,7 +74,7 @@ const inWrapper = css` const keywordMenu = (theme: Theme) => css` width: 100%; - padding: 0 0.6rem 0.75rem; + padding: 0.75rem 0.6rem; background-color: ${theme.color.fullWhite}; `; diff --git a/src/pages/Category/Dining/index.tsx b/src/pages/Category/Dining/index.tsx index c331634..53a8559 100644 --- a/src/pages/Category/Dining/index.tsx +++ b/src/pages/Category/Dining/index.tsx @@ -1,8 +1,104 @@ +import { css, Theme } from "@emotion/react"; +import SectionKeyword from "components/common/SectionKeyword"; +import Image from "next/image"; +import storeData from "assets/stores/stores"; +import Link from "next/link"; +import PlaceCard from "components/Card/PlaceCard"; + function Dining() { - return ( - <> - - ) + return ( +
+
+ img +
+
+
+ {storeData.회식.map((store) => ( + +
+ {store.name} +
+ + ))} +
+
+ +
+ {storeData.혼밥.map((store) => ( + + ))} +
+
+ ); } -export default Dining; \ No newline at end of file +export default Dining; + +const fullSizeWrapper = (theme: Theme) => css` + position: relative; + width: 100%; + min-height: 100%; + padding-bottom: 3.85rem; + background-color: ${theme.color.fullWhite}; +`; + +const imgWrapper = css` + position: relative; + width: 100%; + height: 100%; + padding-top: 1.25rem; +`; + +const inWrapper = css` + display: flex; + flex-direction: row; + justify-content: center; + width: 100%; + height: auto; + flex-wrap: wrap; + margin-top: 1rem; +`; + +const keywordMenu = (theme: Theme) => css` + width: 100%; + padding: 0.75rem 0.6rem; + background-color: ${theme.color.fullWhite}; +`; + +const categoryMenu = css` + display: flex; + flex-direction: row; + height: 2rem; + width: 100%; + overflow-x: scroll; + + ::-webkit-scrollbar { + display: none; + } +`; + +const categoryShape = (theme: Theme) => css` + border: 1px solid ${theme.color.grey500}; + width: auto; + height: 1.85rem; + padding: 0rem 0.62rem; + border-radius: 20px; + margin: 0 0.13rem; + cursor: pointer; +`; + +const category = (theme: Theme) => css` + font-size: 0.81rem; + font-weight: ${theme.fontWeight.light}; +`;