From 7bbaebc4d03015f7b5e87af0148da240fc158d07 Mon Sep 17 00:00:00 2001 From: monoid Date: Wed, 2 Apr 2025 01:06:24 +0900 Subject: [PATCH] login box --- src/App.tsx | 18 +++++++++++++----- src/Sidebar.tsx | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 5 deletions(-) create mode 100644 src/Sidebar.tsx diff --git a/src/App.tsx b/src/App.tsx index 536f14d..b7e4427 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,7 @@ import { Footer } from './Footer'; import { GalleryContent } from './Gallery'; import { GalleryTitleHeader } from './GalleryTitleHeader'; import { GlobalNavigationBar, Header, VisitHistory } from './Header'; +import { LoginBox } from './Sidebar'; import { GalleryTable, TableRowData } from './table'; @@ -205,11 +206,18 @@ function App() { -
- - +
+
+ + +
+
+ +
diff --git a/src/Sidebar.tsx b/src/Sidebar.tsx new file mode 100644 index 0000000..d3c62d1 --- /dev/null +++ b/src/Sidebar.tsx @@ -0,0 +1,41 @@ + +export function LoginBox() { + return ( +
+
+ + 로그인해 주세요. + +
+ + +
+ ) +} \ No newline at end of file