_content/doc/fuzz: add links to new tutorial

Change-Id: I9c8099270a1215bd5b5c3043d2bcc5d097a3dc95
Reviewed-on: https://go-review.googlesource.com/c/website/+/378598
Run-TryBot: Katie Hockman <katie@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: DO NOT USE <iant@google.com>
Trust: DO NOT USE <katiehockman@google.com>
diff --git a/_content/doc/fuzz/index.md b/_content/doc/fuzz/index.md
index d01a4e3..824a67b 100644
--- a/_content/doc/fuzz/index.md
+++ b/_content/doc/fuzz/index.md
@@ -13,6 +13,8 @@
 
 Go supports fuzzing in its standard toolchain beginning in Go 1.18.
 
+**Try out the [tutorial for fuzzing with Go](/doc/tutorial/fuzz).**
+
 ## Overview
 
 Fuzzing is a type of automated testing which continuously manipulates inputs to
@@ -219,9 +221,10 @@
 ## Resources
 
 - **Tutorial**:
-  - For an introductory tutorial of fuzzing with Go, please see [the blog
-    post](/blog/fuzz-beta).
-  - More to come soon!
+  - Try out the [tutorial for fuzzing with Go](/doc/tutorial/fuzz) for a deep
+    dive into the new concepts.
+  - For a shorter, introductory tutorial of fuzzing with Go, please see [the
+    blog post](/blog/fuzz-beta).
 - **Documentation**:
   - The [`testing`](https://pkg.go.dev//testing#hdr-Fuzzing) package docs
     describes the `testing.F` type which is used when writing fuzz tests.