fix home page

This commit is contained in:
2026-06-20 16:30:35 +05:30
parent 2778527442
commit be15ae458c
12 changed files with 344 additions and 210 deletions

124
scratch/update_logos.py Normal file
View File

@@ -0,0 +1,124 @@
import os
from PIL import Image, ImageDraw
def update_logos():
src_logo_path = "/Users/apple/.gemini/antigravity-ide/brain/822556bd-47a7-4c07-8975-803618af0a3a/media__1781948467684.png"
rider_image_base = "public/images/slider-courier-mask-purple-v3.png"
rider_image_out = "public/images/slider-courier-mask-purple-v5.png"
if not os.path.exists(src_logo_path):
print(f"Source logo not found at {src_logo_path}")
return
# 1. Load the original logo
logo_img = Image.open(src_logo_path).convert("RGBA")
logo_w, logo_h = logo_img.size
# 2. Save original logo directly as logo-v3.png (white text, purple icon, white icon bg)
# Just in case we need it, but we will make logo-white-v3.png the default white logo
logo_img.save("public/logo-v3.png", "PNG")
# 3. Create logo-purple-v3.png (for Navbar)
# Icon (x < 40) is kept as-is (purple outline/bag, white background)
# Text (x >= 40) white pixels become purple #662582 (102, 37, 130)
logo_purple = Image.new("RGBA", (logo_w, logo_h))
pixels_orig = logo_img.load()
pixels_purple = logo_purple.load()
for x in range(logo_w):
for y in range(logo_h):
r, g, b, a = pixels_orig[x, y]
if a > 0:
if x < 40:
# Keep original icon colors
pixels_purple[x, y] = (r, g, b, a)
else:
# Convert white text to purple, keep ® sign purple
if r > 200 and g > 200 and b > 200:
pixels_purple[x, y] = (102, 37, 130, a)
else:
pixels_purple[x, y] = (r, g, b, a)
else:
pixels_purple[x, y] = (0, 0, 0, 0)
logo_purple.save("public/logo-purple-v3.png", "PNG")
print("Saved public/logo-purple-v3.png")
# 4. Create logo-white-v3.png (for Footer and Backpack)
# Icon (x < 40): convert purple border/bag to white, convert white background circle to transparent
# Text (x >= 40): convert all text/® sign to white
logo_white = Image.new("RGBA", (logo_w, logo_h))
pixels_white = logo_white.load()
for x in range(logo_w):
for y in range(logo_h):
r, g, b, a = pixels_orig[x, y]
if a > 0:
if x < 40:
# Icon area
if r > 200 and g > 200 and b > 200:
# White background of circle -> transparent
pixels_white[x, y] = (0, 0, 0, 0)
else:
# Purple outline and purple shopping bag -> white
pixels_white[x, y] = (255, 255, 255, a)
else:
# Text area: make everything white (text is already white, ® sign becomes white)
pixels_white[x, y] = (255, 255, 255, a)
else:
pixels_white[x, y] = (0, 0, 0, 0)
logo_white.save("public/logo-white-v3.png", "PNG")
print("Saved public/logo-white-v3.png")
# 5. Create Favicon from the icon area (X: 0 to 39, Y: 4 to 43)
# Note: we use original icon crop (has white background circle and purple border)
icon_crop = logo_img.crop((0, 4, 40, 44))
# Save as versioned Favicon and Apple Icon
icon_crop.save("public/favicon-v2.png", "PNG")
icon_crop.save("public/apple-icon-v2.png", "PNG")
# Save as favicon-v2.ico to both public/ and src/app/
icon_crop.save("public/favicon-v2.ico", format="ICO", sizes=[(32, 32), (48, 48)])
icon_crop.save("src/app/favicon-v2.ico", format="ICO", sizes=[(32, 32), (48, 48)])
print("Saved favicon-v2.ico and apple-icon-v2.png to public/ and src/app/")
# 6. Overlay the new logo-white-v3.png onto the delivery rider's backpack
if os.path.exists(rider_image_base):
rider_img = Image.open(rider_image_base).convert("RGBA")
# Draw a fresh badge (matching --brand-dark / #120217)
badge_w = 148
badge_h = 38
badge_left = 887 - (badge_w // 2)
badge_top = 270 - (badge_h // 2)
badge_right = badge_left + badge_w
badge_bottom = badge_top + badge_h
draw_rider = ImageDraw.Draw(rider_img)
draw_rider.rounded_rectangle(
[badge_left, badge_top, badge_right, badge_bottom],
radius=8,
fill=(18, 2, 23, 255)
)
# Resize logo-white-v3.png (original ratio 275x45 -> width 120, height 20)
logo_w_badge = 120
logo_h_badge = 20
resized_white_logo = logo_white.resize((logo_w_badge, logo_h_badge), Image.Resampling.LANCZOS)
logo_left = 887 - (logo_w_badge // 2)
logo_top = 270 - (logo_h_badge // 2)
# Paste logo on top of the black badge
rider_img.paste(resized_white_logo, (logo_left, logo_top), resized_white_logo)
# Save output
rider_img.save(rider_image_out, "PNG")
print(f"Created updated rider image with white logo at {rider_image_out}")
else:
print(f"Rider base image not found at {rider_image_base}")
if __name__ == "__main__":
update_logos()