diff --git a/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/custom/page.tsx b/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/custom/page.tsx
deleted file mode 100644
index 7f1ce141..00000000
--- a/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/custom/page.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import type { Metadata } from 'next'
-
-import CommandsWrapper from '@/components/pages/commands/commands-wrapper'
-
-export const metadata: Metadata = {
- title: 'Custom Commands',
-}
-
-interface Props {
- params: {
- id: string
- }
-}
-
-export default async function Page({ params }: Props) {
- return
-}
diff --git a/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/global/page.tsx b/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/global/page.tsx
deleted file mode 100644
index d6ef50db..00000000
--- a/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/global/page.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import type { Metadata } from 'next'
-
-import CommandsWrapper from '@/components/pages/commands/commands-wrapper'
-
-export const metadata: Metadata = {
- title: 'Global Commands',
-}
-
-interface Props {
- params: {
- id: string
- }
-}
-
-export default async function Page({ params }: Props) {
- return
-}
diff --git a/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/layout.tsx b/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/layout.tsx
deleted file mode 100644
index 11ae78c7..00000000
--- a/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/@tabs/layout.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import { CommandsTabsLayout } from '@/components/pages/commands/commands-tabs-layout'
-
-interface Props {
- params: {
- id: string
- }
- children: React.ReactNode
-}
-
-export default function TabsLayout({ params, children }: Props) {
- return (
-
- {children}
-
- )
-}
diff --git a/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/layout.tsx b/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/layout.tsx
deleted file mode 100644
index 90947e7d..00000000
--- a/apps/web/src/app/(protected)/dashboard/twitch/[id]/commands/layout.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { CommandsLayout } from '@/components/pages/commands/commands-layout'
-
-interface Props {
- tabs: React.ReactNode
-}
-
-export default function Layout({ tabs }: Props) {
- return
-}
diff --git a/apps/web/src/app/(protected)/dashboard/twitch/[id]/page.tsx b/apps/web/src/app/(protected)/dashboard/twitch/[id]/page.tsx
deleted file mode 100644
index 94e8dd41..00000000
--- a/apps/web/src/app/(protected)/dashboard/twitch/[id]/page.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import type { Metadata } from 'next'
-
-import { OverviewView } from '@/components/pages/overview/overview-view'
-
-export const metadata: Metadata = {
- title: 'Overview',
-}
-
-interface Props {
- params: {
- id: string
- }
-}
-
-export default function Page({ params }: Props) {
- return
-}
diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx
index 66cc17ef..9f72b925 100644
--- a/apps/web/src/app/layout.tsx
+++ b/apps/web/src/app/layout.tsx
@@ -36,7 +36,7 @@ interface Props {
children: React.ReactNode
}
-export default function RootLayout({ children }: Props) {
+export default function Layout({ children }: Props) {
return (
-
-
-
Commands
-
-
-
-
Manage your commands.
-
- {tabs}
-
- )
-}
diff --git a/apps/web/src/components/pages/commands/commands-wrapper.tsx b/apps/web/src/components/pages/commands/commands-wrapper.tsx
deleted file mode 100644
index 93ae03ae..00000000
--- a/apps/web/src/components/pages/commands/commands-wrapper.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-import { Suspense } from 'react'
-
-import { redirect } from 'next/navigation'
-
-import { Commands } from '@/components/pages/commands/commands'
-import { LoaderIcon } from '@/components/ui/icons'
-
-import { auth } from '@/lib/auth'
-
-interface Props {
- platform: Platform
- id: string
- type: CommandType
-}
-
-export default async function CommandsWrapper({ platform, id, type }: Props) {
- const session = await auth()
-
- if (!session) {
- redirect('/signin')
- }
-
- return (
-