From ce5febd3a06ba6f82beec7814da86bf3357c7a3c Mon Sep 17 00:00:00 2001 From: smilevictory Date: Mon, 8 Sep 2025 01:52:22 +0900 Subject: [PATCH 1/3] =?UTF-8?q?refactor:=20home=ED=8E=98=EC=9D=B4=EC=A7=80?= =?UTF-8?q?=20=EA=B5=AC=EC=A1=B0=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ssh/src/components/Layout/RootLayout.tsx | 15 +++ ssh/src/components/Layout/index.tsx | 18 +-- ssh/src/pages/Home/HomePage.tsx | 13 +++ .../Home/components/firstsection/hero.tsx | 106 ------------------ ssh/src/pages/Home/index.tsx | 13 --- .../Features/ServiceCarousel.tsx} | 0 ssh/src/routes/routing.tsx | 4 +- 7 files changed, 33 insertions(+), 136 deletions(-) create mode 100644 ssh/src/components/Layout/RootLayout.tsx create mode 100644 ssh/src/pages/Home/HomePage.tsx delete mode 100644 ssh/src/pages/Home/components/firstsection/hero.tsx delete mode 100644 ssh/src/pages/Home/index.tsx rename ssh/src/pages/Home/{components/secondsection/servicecarousel.tsx => sections/Features/ServiceCarousel.tsx} (100%) diff --git a/ssh/src/components/Layout/RootLayout.tsx b/ssh/src/components/Layout/RootLayout.tsx new file mode 100644 index 0000000..10376af --- /dev/null +++ b/ssh/src/components/Layout/RootLayout.tsx @@ -0,0 +1,15 @@ +import { Outlet } from 'react-router-dom'; +import Header from '@/components/Layout/Header'; +import Footer from '@/components/Layout/Footer'; + +export default function RootLayout() { + return ( + <> +
+
+ +
+