user(); $sections = $user ? $this->homepage->allForUser($user) : $this->homepage->all(); $hero = $sections['hero']; $meta = [ 'title' => 'Skinbase – Digital Art & Wallpapers', 'description' => 'Discover stunning digital art, wallpapers, and skins from a global community of creators. Browse trending works, fresh uploads, and beloved classics.', 'keywords' => 'wallpapers, digital art, skins, photography, community, wallpaper downloads', 'og_image' => $hero['thumb_lg'] ?? $hero['thumb'] ?? null, 'canonical' => url('/'), ]; return view('web.home', [ 'meta' => $meta, 'props' => $sections, 'is_logged_in' => (bool) $user, ]); } }