1 parent a5c112a commit e936c10Copy full SHA for e936c10
1 file changed
macOS/ScriptWidgetMac/App/EmptyHelloView.swift
@@ -52,13 +52,11 @@ struct EmptyHelloView: View {
52
53
private var hero: some View {
54
VStack(alignment: .leading, spacing: 12) {
55
- Image(systemName: "sparkles.square.filled.on.square")
56
- .font(.system(size: 52))
57
- .foregroundStyle(
58
- LinearGradient(colors: [.purple, .blue],
59
- startPoint: .topLeading,
60
- endPoint: .bottomTrailing)
61
- )
+ Image(nsImage: NSApplication.shared.applicationIconImage)
+ .resizable()
+ .scaledToFit()
+ .frame(width: 88, height: 88)
+ .accessibilityLabel("ScriptWidget app icon")
62
Text("Build widgets with JavaScript")
63
.font(.title).bold()
64
Text("Pick a template, preview it instantly on your desktop, then add it anywhere widgets go.")
0 commit comments