diff --git a/ssh/src/assets/logo1.png b/ssh/src/assets/logo1.png
new file mode 100644
index 0000000..9c97bcb
Binary files /dev/null and b/ssh/src/assets/logo1.png differ
diff --git a/ssh/src/assets/logo2.png b/ssh/src/assets/logo2.png
new file mode 100644
index 0000000..7dc8787
Binary files /dev/null and b/ssh/src/assets/logo2.png differ
diff --git a/ssh/src/components/Layout/Footer/index.tsx b/ssh/src/components/Layout/Footer/index.tsx
index e49c5e4..f720872 100644
--- a/ssh/src/components/Layout/Footer/index.tsx
+++ b/ssh/src/components/Layout/Footer/index.tsx
@@ -1,42 +1,43 @@
-import { Separator } from "@/components/ui/separator";
-import { Github, Slack, Instagram } from "lucide-react";
+import { Separator } from '@/components/ui/separator';
+import { Github, Slack, Instagram } from 'lucide-react';
+import logo from '@/assets/logo1.png';
type LinkItem = { label: string; href: string };
type LinkGroup = { title: string; links: LinkItem[] };
const linkGroups: LinkGroup[] = [
{
- title: "서비스 안내",
+ title: '서비스 안내',
links: [
- { label: "은행 서비스 배우기", href: "#" },
- { label: "ATM 위치 찾기", href: "#" },
- { label: "보이스 피싱 자가 진단하기", href: "#" },
- { label: "보이스 피싱 관련 정보 조회하기", href: "#" },
- { label: "기부하기", href: "#" },
- { label: "자주 묻는 질문", href: "#" },
+ { label: '은행 서비스 배우기', href: '#' },
+ { label: 'ATM 위치 찾기', href: '#' },
+ { label: '보이스 피싱 자가 진단하기', href: '#' },
+ { label: '보이스 피싱 관련 정보 조회하기', href: '#' },
+ { label: '기부하기', href: '#' },
+ { label: '자주 묻는 질문', href: '#' },
],
},
{
- title: "고객 지원",
+ title: '고객 지원',
links: [
- { label: "고객 센터", href: "#" },
- { label: "문의하기", href: "#" },
+ { label: '고객 센터', href: '#' },
+ { label: '문의하기', href: '#' },
],
},
{
- title: "약관 및 정책",
+ title: '약관 및 정책',
links: [
- { label: "이용 약관", href: "#" },
- { label: "개인정보 처리방침", href: "#" },
- { label: "위치 기반 서비스 이용약관", href: "#" },
+ { label: '이용 약관', href: '#' },
+ { label: '개인정보 처리방침', href: '#' },
+ { label: '위치 기반 서비스 이용약관', href: '#' },
],
},
{
- title: "회사 정보",
+ title: '회사 정보',
links: [
- { label: "회사 소개", href: "#" },
- { label: "채용 안내", href: "#" },
- { label: "직원 소개", href: "#" },
+ { label: '회사 소개', href: '#' },
+ { label: '채용 안내', href: '#' },
+ { label: '직원 소개', href: '#' },
],
},
];
@@ -50,24 +51,19 @@ export default function Footer() {
>
-
- Logo
+
+
{linkGroups.map((group) => (
-
- All Rights Reserved
-
+
All Rights Reserved
);
diff --git a/ssh/src/components/Layout/Header/index.tsx b/ssh/src/components/Layout/Header/index.tsx
index 40999f3..3e28df3 100644
--- a/ssh/src/components/Layout/Header/index.tsx
+++ b/ssh/src/components/Layout/Header/index.tsx
@@ -1,6 +1,7 @@
import { Link, useLocation } from 'react-router-dom';
import { ROUTING_PATH } from '@/routes/path.constants';
import { MessageSquare, CircleUserRound } from 'lucide-react';
+import logo from '@/assets/logo1.png';
const toAbs = (seg: string) => (!seg ? '/' : seg.startsWith('/') ? seg : `/${seg}`);
@@ -30,25 +31,30 @@ export default function Header() {
return (
-
+
-
+
+
+

+
+
+