lib/veo4_video_art_site_kit.dart
const domain = "veo4-video.art";
const homepage = "https://veo4-video.art";
String buildUrl([String path = ""]) {
final cleanPath = path.replaceFirst(RegExp(r'^/+'), '');
return cleanPath.isEmpty ? homepage : "$homepage/$cleanPath";
}
Map<String, String> metadata() => {
'name': "Veo4 Video",
'domain': domain,
'homepage': homepage,
};