diff --git a/src/app/apple-icon.png b/src/app/apple-icon.png new file mode 100644 index 0000000..b8acd90 Binary files /dev/null and b/src/app/apple-icon.png differ diff --git a/src/app/icon.png b/src/app/icon.png new file mode 100644 index 0000000..88e460a Binary files /dev/null and b/src/app/icon.png differ diff --git a/src/app/opengraph-image.png b/src/app/opengraph-image.png new file mode 100644 index 0000000..c19e246 Binary files /dev/null and b/src/app/opengraph-image.png differ diff --git a/src/app/page.tsx b/src/app/page.tsx index 3c33fa2..881b1ca 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,6 +7,7 @@ import { Plus, LogIn, Loader2, MapPin, Navigation, X, Users, Heart, Sparkles, Ch import { getUserId, getCachedProfile, getCachedPreferences } from "@/lib/userId"; import { getAvatarBg } from "@/lib/avatars"; import AuthModal from "@/components/AuthModal"; +import BrandLogo from "@/components/BrandLogo"; import { SCENES, getSceneConfig } from "@/lib/sceneConfig"; import type { UserProfile, SceneType } from "@/types"; @@ -283,7 +284,8 @@ export default function LandingPage() { animate={{ y: 0, opacity: 1 }} transition={{ duration: 0.5 }} > -
diff --git a/src/components/BrandLogo.tsx b/src/components/BrandLogo.tsx new file mode 100644 index 0000000..064dbaa --- /dev/null +++ b/src/components/BrandLogo.tsx @@ -0,0 +1,37 @@ +export default function BrandLogo({ size = 48 }: { size?: number }) { + return ( + + ); +}