diff --git a/sites/docs/src/content/ai/create-with-ai.md b/sites/docs/src/content/ai/create-with-ai.md index 1a341b8229..44b1731392 100644 --- a/sites/docs/src/content/ai/create-with-ai.md +++ b/sites/docs/src/content/ai/create-with-ai.md @@ -55,7 +55,7 @@ resources: [Firebase AI Logic Showcase]: {{site.github}}/flutter/demos/tree/main/firebase_ai_logic_showcase [firebase-ai-logic-docs]: {{site.firebase}}/docs/ai-logic/get-started [Genkit Dart]: https://genkit.dev -[genkit-dart-quickstart]: https://genkit.dev/docs/dart/get-started +[genkit-dart-quickstart]: https://genkit.dev/docs/dart/overview [Flutter AI Toolkit]: /ai/ai-toolkit ## AI development tools diff --git a/sites/docs/src/content/llms.txt b/sites/docs/src/content/llms.txt index 1502853190..09ea7a88aa 100644 --- a/sites/docs/src/content/llms.txt +++ b/sites/docs/src/content/llms.txt @@ -79,7 +79,7 @@ This file provides a curated list of resources to help Large Language Models und - [Firebase AI Logic package](https://pub.dev/packages/firebase_ai): The pub.dev package for Firebase AI Logic. - [GenUI SDK for Flutter](https://docs.flutter.dev/ai/genui): Learn how to use the GenUI SDK for Flutter to build more interactive experiences in your apps. - [Genkit Dart](https://genkit.dev): An open-source, model-agnostic framework for building AI-powered apps in Dart and Flutter with type-safe schemas, flows, and built-in observability. -- [Genkit Dart quickstart](https://genkit.dev/docs/dart/get-started): Get started building AI-powered Dart and Flutter apps with Genkit. +- [Genkit Dart quickstart](https://genkit.dev/docs/dart/overview): Get started building AI-powered Dart and Flutter apps with Genkit. ## Testing & debugging diff --git a/sites/www/lib/src/pages/ai_page.dart b/sites/www/lib/src/pages/ai_page.dart index 1e2baa5b02..85f3e95621 100644 --- a/sites/www/lib/src/pages/ai_page.dart +++ b/sites/www/lib/src/pages/ai_page.dart @@ -90,9 +90,7 @@ class AiPage extends StatelessComponent { div(classes: 'alternating-item', [ div(classes: 'media', [ img( - src: context.asset( - 'images/build-with-ai/vertex-tab.png', - ), + src: context.asset('images/build-with-ai/vertex-tab.png'), alt: 'Vertex AI Logo', ), ]), @@ -117,9 +115,7 @@ class AiPage extends StatelessComponent { div(classes: 'media', [ img( classes: 'genkit-logo', - src: context.asset( - 'images/genkit.jpg', - ), + src: context.asset('images/genkit.jpg'), alt: 'Genkit Logo', ), ]), @@ -132,7 +128,7 @@ class AiPage extends StatelessComponent { ]), a( classes: 'btn', - href: 'https://genkit.dev/docs/dart/get-started/', + href: 'https://genkit.dev/docs/dart/overview', target: Target.blank, [.text('Get started')], ), @@ -216,7 +212,7 @@ class AiPage extends StatelessComponent { title: 'Build AI-powered apps with Genkit Dart', description: 'Learn how to build AI-powered applications in Dart and Flutter using the Genkit framework.', - url: 'https://genkit.dev/docs/dart/get-started/', + url: 'https://genkit.dev/docs/dart/overview', icon: context.asset( '/development/images/icons/get-started-in-docs.svg', ), @@ -251,10 +247,7 @@ class AiPage extends StatelessComponent { a(href: item.href, target: Target.blank, [ div([ div(classes: 'image-container', [ - img( - alt: item.title, - src: context.asset(item.image), - ), + img(alt: item.title, src: context.asset(item.image)), ]), div(classes: 'text', [ h3([.text(item.title)]),