diff --git a/site/hero-launch-card.png b/site/hero-launch-card.png index 7aeb9ef..b37ffcf 100644 Binary files a/site/hero-launch-card.png and b/site/hero-launch-card.png differ diff --git a/site/hero-launch-card.svg b/site/hero-launch-card.svg index df4474a..22bb43f 100644 --- a/site/hero-launch-card.svg +++ b/site/hero-launch-card.svg @@ -1,16 +1,22 @@ + aria-label="Microsoft is retiring its Whiteboard app on 14 September 2026. SQLBI Whiteboard is the answer, shown in its real window: a captured Power BI matrix with highlighter marks, a DAX measure, and red pen annotations."> Hold my beer + card rather than cropped from the square artwork. The application window is + drawn from the Store listing screenshots: same chrome, same floating palette, + same captured matrix and DAX panel, with the type enlarged so it survives the + downscale to a feed thumbnail. --> - - - - + + + + + + + @@ -49,113 +55,165 @@ Hold my beer… - - - - - - - - - - - - - - - - - - - - - - - - SQLBI Whiteboard - - - - - - - - - - - - - - - - - - - Sales Overview - - - - Revenue Trend - - + font-size="56" font-weight="700" letter-spacing="-1.5">“Hold my beer…” + + + + + + + + + + + SQLBI Whiteboard + + + + - - - - - - - - - JanMarMay - JulSepDec - - - 20242025 - - - - - - Key Takeaway - - - North America - drives growth. - Focus on enterprise. - - - + + + + + File + Edit + View + Help - - DAX Highlight - - - Sales Amount= - SUM( Sales[Amount] ) + + + + + Year + 2024 + 2025 + Brand + + Sales Amount + YOY % + Sales Amount + YOY % + + + + A. Datum + Adventure Works + Contoso + Fabrikam + Litware + + 57,064.74119.91% + 17,100.95-70.03% + 363,393.9627.47% + 182,123.25-49.88% + 210,856.0912.17% + 94,398.13-55.23% + 172,102.3677.00% + 74,722.24-56.58% + 19,870.40-51.49% + 13,308.30-33.02% + - - Top Products - - Apex ProNova EliteZenith + + + + + + + - - - + + + + DAX Code of YOY % + + + + + + + + + + YOY % = + VAR CY = [Sales Amount] + VAR PY = + CALCULATE ( [Sales Amount], PREVIOUSYEAR ( 'Date'[Date] ) ) + RETURN + DIVIDE ( CY - PY, PY ) + - - - - + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/hero-launch.png b/site/hero-launch.png index 61cbc82..70a97ff 100644 Binary files a/site/hero-launch.png and b/site/hero-launch.png differ diff --git a/site/hero-launch.svg b/site/hero-launch.svg index 730973f..b6a66b0 100644 --- a/site/hero-launch.svg +++ b/site/hero-launch.svg @@ -1,18 +1,26 @@ - + Hold my beer + - + - - - - + + + + + + + - - + + @@ -48,112 +56,167 @@ - Hold my beer… - + “Hold my beer…” + - - - - - - - - - - - - - - - - - - - - - SQLBI Whiteboard - - - - - - - - - - - - - - - - - - - Sales Overview - - - - Revenue Trend - - - - - - - - - + + + + + + + + + SQLBI Whiteboard + + + + - - JanMarMay - JulSepDec - - - 20242025 - - - - - - Key Takeaway - - - North America - drives growth. - Focus on enterprise. - - - + + + + + File + Edit + View + Help - - DAX Highlight - - - Sales Amount= - SUM( Sales[Amount] ) + + + + + Year + 2024 + 2025 + Brand + + Sales Amount + YOY % + Sales Amount + YOY % + + + + A. Datum + Adventure Works + Contoso + Fabrikam + Litware + + 57,064.74119.91% + 17,100.95-70.03% + 363,393.9627.47% + 182,123.25-49.88% + 210,856.0912.17% + 94,398.13-55.23% + 172,102.3677.00% + 74,722.24-56.58% + 19,870.40-51.49% + 13,308.30-33.02% + - - Top Products - - Apex ProNova EliteZenith + + + + + + + - - - + + + + DAX Code of YOY % + + + + + + + + + + YOY % = + VAR CY = [Sales Amount] + VAR PY = + CALCULATE ( [Sales Amount], PREVIOUSYEAR ( 'Date'[Date] ) ) + RETURN + DIVIDE ( CY - PY, PY ) + - - - - + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/site/index.html b/site/index.html index f35ef65..fd8fe09 100644 --- a/site/index.html +++ b/site/index.html @@ -72,8 +72,8 @@

The whiteboard for teaching

- Microsoft is retiring its Whiteboard app on 14 September 2026. SQLBI Whiteboard, shown on a pen display with charts, a DAX measure, and handwriting. + Microsoft is retiring its Whiteboard app on 14 September 2026. SQLBI Whiteboard, shown in its real window: a captured Power BI matrix with highlighter marks, a DAX measure, and red pen annotations.
Microsoft retires its Whiteboard on 14 September 2026.
This is what we drew instead.
diff --git a/tools/render-cards.ps1 b/tools/render-cards.ps1 index 1a6ea5f..7392fc0 100644 --- a/tools/render-cards.ps1 +++ b/tools/render-cards.ps1 @@ -52,6 +52,10 @@ img{display:block;width:$($card.width)px;height:${height}px} $out = Join-Path $site $card.png + # Remove the previous export first: the wait below watches for the file to + # appear, and a stale copy would satisfy it even when the render failed. + Remove-Item $out -Force -ErrorAction SilentlyContinue + # A private profile: headless refuses to start against a running Chrome. & $chrome --headless --disable-gpu --hide-scrollbars ` --user-data-dir="$work\profile" `