diff --git a/src/app/(auth-state)/layout.tsx b/src/app/(auth-state)/layout.tsx
deleted file mode 100644
index a4ecefda..00000000
--- a/src/app/(auth-state)/layout.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import FooterAuth from '@/site/FooterAuth';
-import PageContentContainer from '@/components/PageContentContainer';
-import { auth } from '@/auth';
-
-export default async function RootLayout({
- children,
-}: {
- children: React.ReactNode
-}) {
- const session = await auth();
- return (
- <>
-
- {children}
-
-
- >
- );
-}
diff --git a/src/app/(static)/layout.tsx b/src/app/(static)/layout.tsx
deleted file mode 100644
index f4fa896f..00000000
--- a/src/app/(static)/layout.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import FooterStatic from '@/site/FooterStatic';
-import PageContentContainer from '@/components/PageContentContainer';
-
-export default function RootLayout({
- children,
-}: {
- children: React.ReactNode
-}) {
- return (
- <>
-
- {children}
-
-
- >
- );
-}
\ No newline at end of file
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1f822b57..1adcaceb 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -9,6 +9,7 @@ import ThemeProviderClient from '@/site/ThemeProviderClient';
import Nav from '@/site/Nav';
import ToasterWithThemes from '@/toast/ToasterWithThemes';
import PhotoEscapeHandler from '@/photo/PhotoEscapeHandler';
+import Footer from '@/site/Footer';
import '../site/globals.css';
@@ -68,21 +69,27 @@ export default function RootLayout({
suppressHydrationWarning
>
-
-
-
-
- {children}
-
-
-
-
-
-
-
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+