diff --git a/src/app/page.tsx b/src/app/page.tsx
index e0bea99..04a0958 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,24 +3,27 @@
import { useConfig } from '@/contexts/configExports';
import Link from 'next/link';
import styles from './styles.module.scss';
+import { redirect } from 'next/navigation';
export default function HomePage() {
const { config } = useConfig();
- return (
- <>
-
- >
- );
+ // return (
+ // <>
+ //
+ // >
+ // );
+
+ redirect(`/gallery`);
}
diff --git a/src/components/Header.tsx b/src/components/Header.tsx
index c295a17..aa7ac04 100644
--- a/src/components/Header.tsx
+++ b/src/components/Header.tsx
@@ -49,12 +49,12 @@ export default function Header() {