diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx
index 9c07c07..08de66a 100644
--- a/src/app/(app)/layout.tsx
+++ b/src/app/(app)/layout.tsx
@@ -11,6 +11,7 @@ export default function RootLayout({
}: Readonly<{
children: React.ReactNode;
}>) {
+<<<<<<< HEAD
const { isMobile, isSafari } = useDevice();
return (
@@ -32,4 +33,26 @@ export default function RootLayout({
) : null}
);
+=======
+
+ const { isMobile, isSafari } = useDevice();
+ return (
+
+
+
+ {children}
+ { isMobile && isSafari ? (
+
+
+
+ ) : null }
+
+ );
+>>>>>>> 3361d0451f88d7bbe1a241b09f5cc013c2abf8f7
}
diff --git a/src/app/(app)/page.tsx b/src/app/(app)/page.tsx
index ba9ad2e..db20099 100644
--- a/src/app/(app)/page.tsx
+++ b/src/app/(app)/page.tsx
@@ -12,12 +12,21 @@ function Mobile() {
Welcome, {session?.name || "NULL"} !!
-
-
+
+
+
);
@@ -33,6 +42,7 @@ function Web() {
Welcome, {session?.name || "NULL"} !!
+<<<<<<< HEAD
{isAuthenticated ? (
)}
+=======
+
+
+
+>>>>>>> 3361d0451f88d7bbe1a241b09f5cc013c2abf8f7
);
}