diff --git a/src/components/atoms/Card.tsx b/src/components/atoms/Card.tsx
new file mode 100644
index 0000000..c28ba92
--- /dev/null
+++ b/src/components/atoms/Card.tsx
@@ -0,0 +1,28 @@
+import { type ReactNode } from "react";
+import { Card as AntCard } from "antd";
+import { css } from "@emotion/react";
+import colors from "@/styles/colors";
+
+interface Props {
+ children: ReactNode;
+ round?: boolean;
+}
+
+const Card = ({ children, round = false }: Props) => (
+
+ {children}
+
+);
+
+export default Card;
diff --git a/src/components/atoms/index.ts b/src/components/atoms/index.ts
index e69de29..fc91b3d 100644
--- a/src/components/atoms/index.ts
+++ b/src/components/atoms/index.ts
@@ -0,0 +1 @@
+export { default as Card } from "./Card";
diff --git a/src/components/organisms/Footer.tsx b/src/components/organisms/Footer.tsx
index 63d2ed2..0ec7572 100644
--- a/src/components/organisms/Footer.tsx
+++ b/src/components/organisms/Footer.tsx
@@ -1,9 +1,9 @@
-import { Col, Flex, Layout, Row, Typography } from "antd";
+import { Col, ConfigProvider, Flex, Layout, Row, Typography } from "antd";
import { css } from "@emotion/react";
-
import { SNSHomepage, SNSInstagram, SNSLinkedin, SNSYoutube } from "@/assets";
+import colors from "@/styles/colors";
-const { Title, Paragraph, Text } = Typography;
+const { Title, Paragraph, Text, Link } = Typography;
const { Footer } = Layout;
const FooterTitle = () => (
@@ -22,7 +22,20 @@ const FooterDescription = () => (
젊치인의 도전과 성장을 돕는 에이전시
대표 박혜민
고유번호 767-82-00531
- 문의 build@newways.kr
+
+ 문의{" "}
+
+
+ build@newways.kr
+
+
+
);
diff --git a/src/components/organisms/Histogram.tsx b/src/components/organisms/Histogram.tsx
index 8aeefbb..72ca20a 100644
--- a/src/components/organisms/Histogram.tsx
+++ b/src/components/organisms/Histogram.tsx
@@ -72,6 +72,7 @@ export const Histogram = ({ data }: Props) => {
data: histogramData,
binField: "value",
binWidth,
+ height: 250,
colorField: "type",
color: param => {
const [binMin] = param.range as [number, number];
diff --git a/src/components/pages/LocalCouncilPage.tsx b/src/components/organisms/LocalCouncilCard.tsx
similarity index 84%
rename from src/components/pages/LocalCouncilPage.tsx
rename to src/components/organisms/LocalCouncilCard.tsx
index 3d9c57e..f0a7c45 100644
--- a/src/components/pages/LocalCouncilPage.tsx
+++ b/src/components/organisms/LocalCouncilCard.tsx
@@ -1,10 +1,11 @@
import { useEffect, useState } from "react";
-import { MapSelector, LocalCouncilReport } from "@/components/organisms";
import { useParams } from "react-router-dom";
import { Element, scroller } from "react-scroll";
-import { Layout } from "@/components/templates";
+
import { type MetroID } from "static/MapSVGData";
import axios from "@/utils/axios";
+import MapSelector from "./MapSelector";
+import LocalCouncilReport from "./LocalCouncilReport";
type RegionInfo = {
id: number;
@@ -17,10 +18,12 @@ type LocalInfo = {
id: number;
};
-const LocalCouncil = () => {
+const LocalCouncilCard = () => {
const { metroName, localName } = useParams();
const [metroLocalMap, setMetroLocalMap] =
useState