Test page home

from pathlib import Path import json # Tạo nội dung cấu trúc JSON mẫu cho trang chủ với 3 section: # 1. Training & Tactics # 2. Football Analysis # 3. Youth Football # Dạng GenerateBlocks (chứa Container > Heading + Query Loop theo Category) home_layout = { “version”: 2, “content”: “””
“”” } # Lưu file .json output_path = Path(“/mnt/data/homepage-layout-sample.json”) with output_path.open(“w”, encoding=”utf-8″) as f: json.dump(home_layout, f, ensure_ascii=False, indent=2) output_path.name