diff --git a/templates/components/anime_characters.gohtml b/templates/components/anime_characters.gohtml
new file mode 100644
index 0000000..35d5d27
--- /dev/null
+++ b/templates/components/anime_characters.gohtml
@@ -0,0 +1,40 @@
+{{define "anime_characters"}}
+
+
Characters & Cast
+
+ {{range (slice .Items 0 (min (len .Items) 10))}}
+
+
+

+
+
+ {{.Character.Name}}
+ {{.Role}}
+ {{if .VoiceActors}}
+ {{(index .VoiceActors 0).Person.Name}}
+ {{end}}
+
+
+ {{end}}
+
+
+{{end}}
+
+{{define "anime_characters_loading"}}
+
+
+
Characters & Cast
+
+ {{range (seq 5)}}
+
+ {{end}}
+
+
+
+{{end}}