diff --git a/templates/corporate/hello.html b/templates/corporate/hello.html
index a86c3b0fd9..a4fc1b3449 100644
--- a/templates/corporate/hello.html
+++ b/templates/corporate/hello.html
@@ -23,31 +23,24 @@
-
+
diff --git a/tools/setup/generate_landing_page_images.py b/tools/setup/generate_landing_page_images.py
index 6d3276a903..6f425ed09b 100755
--- a/tools/setup/generate_landing_page_images.py
+++ b/tools/setup/generate_landing_page_images.py
@@ -32,12 +32,12 @@ def generate_landing_page_images() -> None:
for image_file_path in glob.glob(f"{ORIGINAL_IMAGES_DIR}/*"):
file_name = Path(image_file_path).stem
image = pyvips.Image.new_from_file(image_file_path)
- for size in (1, 2):
- scaled_width = get_x_size(image.width, size)
- scaled_height = get_x_size(image.height, size)
- scaled = image.thumbnail_image(scaled_width, height=scaled_height)
- for format in ("webp[Q=50]", "jpg[Q=70,optimize-coding=true]"):
- scaled.write_to_file(f"{GENERATED_IMAGES_DIR}/{file_name}-{size}x.{format}")
+ size = 2
+ scaled_width = get_x_size(image.width, size)
+ scaled_height = get_x_size(image.height, size)
+ scaled = image.thumbnail_image(scaled_width, height=scaled_height)
+ for format in ("webp[Q=55]", "jpg[Q=75,optimize-coding=true]"):
+ scaled.write_to_file(f"{GENERATED_IMAGES_DIR}/{file_name}-{size}x.{format}")
if __name__ == "__main__":
diff --git a/web/styles/portico/hello.css b/web/styles/portico/hello.css
index 792d4f910a..cebf86e919 100644
--- a/web/styles/portico/hello.css
+++ b/web/styles/portico/hello.css
@@ -759,6 +759,7 @@ ul {
.appshot-1__img {
width: auto;
+ max-width: 400px;
height: auto;
}