+ )
+}
diff --git a/src/components/system/TitleBar/index.ts b/src/components/layout/TitleBar/index.ts
similarity index 100%
rename from src/components/system/TitleBar/index.ts
rename to src/components/layout/TitleBar/index.ts
diff --git a/src/components/layout/index.ts b/src/components/layout/index.ts
index 2ec794d..29c4042 100644
--- a/src/components/layout/index.ts
+++ b/src/components/layout/index.ts
@@ -1,2 +1,3 @@
-export * from './Button'
export * from './Downloaders'
+export * from './Popup'
+export * from './TitleBar'
diff --git a/src/components/system/AnimateView/AnimateView.tsx b/src/components/system/AnimateView/AnimateView.tsx
deleted file mode 100644
index 8dd60be..0000000
--- a/src/components/system/AnimateView/AnimateView.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import type { HTMLMotionProps } from 'framer-motion'
-import { AnimatePresence, motion } from 'framer-motion'
-
-export interface AnimateViewProps extends HTMLMotionProps<'main'> {
- condition: boolean
- children: React.ReactNode
-}
-
-export const AnimateView: React.FC