Skip to content
This repository was archived by the owner on Aug 14, 2023. It is now read-only.

chore: update links #429

Merged
merged 1 commit into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ and the links from each individual image on the LICENSE file under that same fol
[coverage_badge]: coverage_badge.svg
[firebase_link]: https://firebase.google.com/
[flutter_link]: https://flutter.dev
[tensorflow_link]: https://tensorflow.org
[tensorflow_link]: https://www.tensorflow.org/js
[flutter_localizations_link]: https://api.flutter.dev/flutter/flutter_localizations/flutter_localizations-library.html
[flutter_forward_link]: https://flutter.dev/events/flutter-forward
[blog_link]: https://medium.com/flutter/how-its-made-holobooth-6473f3d018dd
Expand Down
6 changes: 3 additions & 3 deletions functions/src/share/templates/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default `
</a>
</li>
<li>
<a href="https://www.tensorflow.org/">
<a href="https://www.tensorflow.org/js/">
<img class="tensorflow-icon" src={{assetUrls.tensorflowIcon}} />
</a>
</li>
Expand All @@ -23,8 +23,8 @@ export default `
<ul>
<li><a href="https://flutter.dev/">Flutter</a></li>
<li><a href="https://firebase.google.com/">Firebase</a></li>
<li><a href="https://www.tensorflow.org/">TensorFlow</a></li>
<li><a href="https://mediapipe.dev/">MediaPipe</a></li>
<li><a href="https://www.tensorflow.org/js/">TensorFlow</a></li>
<li><a href="https://developers.google.com/mediapipe">MediaPipe</a></li>
<li><a href="https://policies.google.com/terms">Terms of Service</a></li>
<li><a href="https://policies.google.com/privacy">Privacy Policy</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion functions/src/share/templates/share.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default `
<a href="https://firebase.google.com/" class="player-btn">
<img class="firebase-icon" src={{assetUrls.firebaseIcon}} />
</a>
<a href="https://www.tensorflow.org/" class="player-btn">
<a href="https://www.tensorflow.org/js/" class="player-btn">
<img class="tensorflow-icon" src={{assetUrls.tensorflowIcon}} />
</a>
<a href="#" class="player-btn fullscreen-button">
Expand Down
4 changes: 2 additions & 2 deletions lib/external_links/external_links.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const howItsMadeLink =
'https://medium.com/flutter/how-its-made-holobooth-6473f3d018dd';
const repositoryLink = 'https://github.com/flutter/holobooth';
const firebaseExternalLink = 'https://firebase.google.com';
const tensorFlowLink = 'https://tensorflow.org';
const mediaPipeLink = 'https://mediapipe.dev/';
const tensorFlowLink = 'https://www.tensorflow.org/js';
const mediaPipeLink = 'https://developers.google.com/mediapipe';
const photoboothEmail = 'mailto:flutter-photo-booth@google.com';
const termsOfServiceLink = 'https://policies.google.com/terms';
const privacyPolicyLink = 'https://policies.google.com/privacy';
Expand Down