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