diff --git a/src/app/(app)/page.tsx b/src/app/(app)/page.tsx
index 53dafc4..26135fd 100644
--- a/src/app/(app)/page.tsx
+++ b/src/app/(app)/page.tsx
@@ -135,4 +135,24 @@ function Mobile() {
);
}
-export default Mobile;
+function Web() {
+ return (
+
+
+
+ Welcome to Drink Happy!
+
+
+ );
+}
+
+export default function Home() {
+ const { isMobile, isSafari } = useDevice();
+
+ if(isMobile && isSafari) return Mobile();
+ else return Web();
+}
diff --git a/src/lib/components/Post.tsx b/src/lib/components/Post.tsx
index d72b41f..f74a64a 100644
--- a/src/lib/components/Post.tsx
+++ b/src/lib/components/Post.tsx
@@ -91,11 +91,11 @@ export default function Post({
)}
{/* Post Actions */}
-