diff --git a/docs/src/fancyholograms/api/api.md b/docs/src/fancyholograms/api/api.md
new file mode 100644
index 00000000..215f52b8
--- /dev/null
+++ b/docs/src/fancyholograms/api/api.md
@@ -0,0 +1,6 @@
+---
+redirect: getting-started.md
+icon: code
+order: 6
+---
+# API usage
\ No newline at end of file
diff --git a/docs/src/fancyholograms/api/getting-started.md b/docs/src/fancyholograms/api/getting-started.md
new file mode 100644
index 00000000..9eb7c952
--- /dev/null
+++ b/docs/src/fancyholograms/api/getting-started.md
@@ -0,0 +1,130 @@
+# Getting started
+
+## Include the API in your project
+
+To include the FancyHolograms API in your project, you need to add the following dependency to your `build.gradle.kts` or `pom.xml` file.
+
+**Gradle:**
+```kotlin
+repositories {
+ maven("https://repo.fancyplugins.de/releases")
+}
+```
+
+```kotlin
+dependencies {
+ compileOnly("de.oliver:FancyHolograms:VERSION")
+}
+```
+
+**Maven:**
+```xml
+
+ fancyplugins-releases
+ FancyPlugins Repository
+ https://repo.fancyplugins.de/releases
+
+```
+
+```xml
+
+ de.oliver
+ FancyHolograms
+ VERSION
+ provided
+
+```
+
+Replace `VERSION` with the version of the API you want to use. You can find the latest version on the download pages or in the GitHub releases.
+
+## Create a new hologram
+
+### 1. Create the hologram data
+
+The TextHologramData class is used to store all the information about aa hologram. You can create a new instance of TextHologramData by providing a name, and the location where the hologram should be spawned.
+
+```java
+TextHologramData hologramData = new TextHologramData("hologram_name", location);
+// Adjust the Hologram Data
+hologramData.setBackground(TextColor.color(100, 255, 79));
+hologramData.setBillboard(Display.Billboard.FIXED);
+```
+
+!!!
+You can also use ItemHologramData or ItemHologramData to create a holograms with other types.
+!!!
+
+### 2. Create the hologram
+
+You can use the TextHologramData object to create a new hologram. Because the implementation of the hologram different for every Minecraft version, FancyHolograms provides a factory to create the hologram.
+
+```java
+HologramManager manager = FancyHologramsPlugin.get().getHologramManager();
+Hologram hologram = manager.create(data);
+```
+
+### 3. Register the hologram
+
+To let FancyHolograms handle the hologram, you need to register it. FancyHolograms will take care of spawning, despawning, saving the hologram, and more.
+
+```java
+HologramManager manager = FancyHologramsPlugin.get().getHologramManager();
+manager.addHologram(hologram);
+```
+
+!!!
+If you don't want to persist the npc, you can do the following: `npc.setPersistent(false);`
+!!!
+
+## Modify an existing hologram
+
+### 1. Get the hologram by name
+
+You can get the hologram by its name. The name is unique and can be used to identify the hologram.
+
+```java
+HologramManager manager = FancyHologramsPlugin.get().getHologramManager();
+
+Hologram hologram = manager.getHologram("hologram_name").orElse(null);
+if (hologram == null) {
+ // hologram not found
+ return;
+}
+```
+
+### 2. Modify the data
+
+You can modify the hologram data object to change the holograms's properties.
+
+```java
+HologramData hologramData = hologram.getData();
+hologramData.setBillboard(Display.Billboard.CENTER);
+
+if (hologramData instanceof TextHologramData textData) {
+ textData.setTextAlignment(TextDisplay.TextAlignment.LEFT);
+}
+```
+
+### 3. Update the hologram
+
+After modifying the hologram data, you need to update the hologram. This will apply the changes to the hologram.
+
+```java
+hologram.forceUpdate();
+hologram.queueUpdate();
+```
+
+## Remove a hologram
+
+To remove a hologram, you can use the `removeHologram` method of the `HologramManager`. This will remove the hologram and unregister it.
+
+```java
+HologramManager manager = FancyHologramsPlugin.get().getHologramManager();
+manager.removeHologram("hologram_name");
+```
+
+## JavaDocs and help
+
+You can find the JavaDocs for the FancyHolograms API [here](https://repo.fancyplugins.de/javadoc/releases/de/oliver/FancyHolograms/latest).
+
+Join the [FancyPlugins Discord](https://discord.gg/ZUgYCEJUEx) for help and support. There is a dedicated channel for help about the api (`#holograms-dev`).
diff --git a/docs/src/fancyholograms/changelog/changelog.md b/docs/src/fancyholograms/changelog/changelog.md
new file mode 100644
index 00000000..69351ee2
--- /dev/null
+++ b/docs/src/fancyholograms/changelog/changelog.md
@@ -0,0 +1,5 @@
+---
+icon: log
+order: 5
+redirect: v2
+---
\ No newline at end of file
diff --git a/docs/src/fancyholograms/changelog/v1.md b/docs/src/fancyholograms/changelog/v1.md
new file mode 100644
index 00000000..02065503
--- /dev/null
+++ b/docs/src/fancyholograms/changelog/v1.md
@@ -0,0 +1,7 @@
+---
+order: 1
+---
+
+
+
+#
diff --git a/docs/src/fancyholograms/changelog/v2.md b/docs/src/fancyholograms/changelog/v2.md
new file mode 100644
index 00000000..c4f44c38
--- /dev/null
+++ b/docs/src/fancyholograms/changelog/v2.md
@@ -0,0 +1,7 @@
+---
+order: 2
+---
+
+
+
+#
diff --git a/docs/src/fancyholograms/commands/commands.md b/docs/src/fancyholograms/commands/commands.md
new file mode 100644
index 00000000..3bc9866a
--- /dev/null
+++ b/docs/src/fancyholograms/commands/commands.md
@@ -0,0 +1,5 @@
+---
+order: 9
+icon: command-palette
+redirect: hologram.md
+---
\ No newline at end of file
diff --git a/docs/src/fancyholograms/commands/fancyholograms.md b/docs/src/fancyholograms/commands/fancyholograms.md
new file mode 100644
index 00000000..b5edda10
--- /dev/null
+++ b/docs/src/fancyholograms/commands/fancyholograms.md
@@ -0,0 +1,36 @@
+---
+order: 9
+---
+
+
+
+# /FancyHolograms
+
+### Version
+
+Shows the current version of the plugin. It also shows possible updates.
+
+- **Syntax**: `/fancyholograms version`
+- **Permissions**: `fancyholograms.admin`
+
+### Save
+
+Saves all holograms to the file system.
+
+- **Syntax**: `/fancyholograms save`
+- **Permissions**: `fancyholograms.admin`
+
+### Reload
+
+Reloads the configuration and also loads all holograms from the file system.
+
+- **Syntax**: `/fancyholograms reload`
+- **Permissions**: `fancyholograms.admin`
+
+### Convert
+
+Converts holograms from other hologram-plugins to FancyHolograms' holograms
+
+- **Syntax**: `/fancyholograms convert DecentHolograms <* | name of hologram> [--processIcons]`
+ - `--processIcons`: If set, the converter will also convert icons into separate holograms
+- **Permissions**: `fancyholograms.admin`
diff --git a/docs/src/fancyholograms/commands/hologram.md b/docs/src/fancyholograms/commands/hologram.md
new file mode 100644
index 00000000..d9a80ac3
--- /dev/null
+++ b/docs/src/fancyholograms/commands/hologram.md
@@ -0,0 +1,217 @@
+---
+order: 10
+---
+
+
+
+# /Hologram
+
+## Manage holograms
+
+### help
+
+Description: Shows a list of all subcommands
+Syntax: ``/Hologram help``
+Permission: ``FancyHolograms.admin``
+
+### list
+
+Description: Shows a list of all holograms
+Syntax: ``/Hologram list``
+Permission: ``FancyHolograms.admin``
+
+### nearby
+
+Description: Shows all holograms nearby you in a range
+Syntax: ``/Hologram nearby ``
+Permission: ``FancyHolograms.admin``
+
+### create
+
+Description: Creates a new hologram at your location
+Syntax: ``/Hologram create (type) (name)``
+Permission: ``FancyHolograms.admin``
+
+### remove
+
+Description: Removes a certain hologram
+Syntax: ``/Hologram remove (hologram)``
+Permission: ``FancyHolograms.admin``
+
+### copy
+
+Description: Creates a copy of a hologram
+Syntax: ``/Hologram copy (hologram) (new name)``
+Permission: ``FancyHolograms.admin``
+
+### info
+
+Description: Shows you all information about the hologram
+Syntax: ``/Hologram info (hologram)``
+Permission: ``FancyHolograms.admin``
+
+## General hologram modification
+
+These commands can be run for any hologram type (text, item and block).
+
+### moveHere
+
+Description: Teleports the hologram to you
+Syntax: ``/Hologram edit (hologram) moveHere``
+Alias: ``/Hologram edit (hologram) position``
+Permission: ``FancyHolograms.admin``
+
+### moveTo
+
+Description: Teleports the hologram to the location
+Syntax: ``/Hologram edit (hologram) moveTo (x) (y) (z) [yaw] [pitch]``
+Permission: ``FancyHolograms.admin``
+
+### rotate
+
+Description: Rotates the hologram around the y-axis
+Syntax: ``/Hologram edit (hologram) rotate (degrees)``
+Permission: ``FancyHolograms.admin``
+
+### rotatepitch
+
+Description: Rotates the hologram around the x-axis
+Syntax: ``/Hologram edit (hologram) rotatepitch (degrees)``
+Permission: ``FancyHolograms.admin``
+
+### visibilityDistance
+
+Description: Sets from how far away players can see the hologram (-1 for default distance)
+Syntax: ``/Hologram edit (hologram) visibilityDistance (distance)``
+Permission: ``FancyHolograms.admin``
+
+### visibility
+
+Description: Sets how the visibility should be controlled
+Syntax: ``/Hologram edit (hologram) visibility (ALL | MANUAL | PERMISSION_NEEDED)``
+Permission: ``FancyHolograms.admin``
+Permission to view a hologram: ``FancyHolograms.viewhologram.``
+
+### scale
+
+Description: Sets the scale (can be floats)
+Syntax: ``/Hologram edit (hologram) scale (factor)``
+Permission: ``FancyHolograms.admin``
+
+### billboard
+
+Description: Sets the billboard
+Syntax: ``/Hologram edit (hologram) billboard (center | fixed | vertical | horizontal)``
+Permission: ``FancyHolograms.admin``
+
+### shadowStrength
+
+Description: Sets the shadow strength
+Syntax: ``/Hologram edit (hologram) shadowStrength (strength)``
+Permission: ``FancyHolograms.admin``
+
+### shadowRadius
+
+Description: Sets the shadow radius
+Syntax: ``/Hologram edit (hologram) shadowRadius (radius)``
+Permission: ``FancyHolograms.admin``
+
+### linkWithNpc
+
+Description: Links a hologram with an NPC (requires FancyNpcs)
+Syntax: ``/Hologram edit (hologram) linkWithNpc (npc)``
+Permission: ``FancyHolograms.admin``
+
+### unlinkWithNpc
+
+Description: Unlinks the hologram from the NPC
+Syntax: ``/Hologram edit (hologram) unlinkWithNpc``
+Permission: ``FancyHolograms.admin``
+
+## Text hologram modification
+
+These commands can be run for all **text** holograms.
+
+### setLine
+
+Description: Sets the content of the line
+Syntax: ``/Hologram edit (hologram) setLine (line) (text...)``
+Permission: ``FancyHolograms.admin``
+
+### addLine
+
+Description: Adds a line at the bottom
+Syntax: ``/Hologram edit (hologram) addLine (text...)``
+Permission: ``FancyHolograms.admin``
+
+### removeLine
+
+Description: Removes a line
+Syntax: ``/Hologram edit (hologram) removeLine (line)``
+Permission: ``FancyHolograms.admin``
+
+### insertBefore
+
+Description: Adds a line after another
+Syntax: ``/Hologram edit (hologram) insertBefore (line) (text...)``
+Permission: ``FancyHolograms.admin``
+
+### insertAfter
+
+Description: Adds a line before another
+Syntax: ``/Hologram edit (hologram) insertAfter (line) (text...)``
+Permission: ``FancyHolograms.admin``
+
+### updateTextInterval
+
+Description: Sets the interval for refreshing the text (useful for
+placeholders)
+Syntax: ``/Hologram edit (hologram) updateTextInterval (ticks | seconds | minutes)``
+Example ticks:``/Hologram edit (hologram) updateTextInterval (15)``
+Example seconds:``/Hologram edit (hologram) updateTextInterval (5s)``
+Example minutes:``/Hologram edit (hologram) updateTextInterval (5m)``
+Permission: ``FancyHolograms.admin``
+
+### background
+
+Description: Sets the background color
+Syntax: ``/Hologram edit (hologram) background (color)``
+Permission: ``FancyHolograms.admin``
+
+### textShadow
+
+Description: Enables/disables the text shadow
+Syntax: ``/Hologram edit (hologram) textShadow (true|false)``
+Permission: ``FancyHolograms.admin``
+
+### brightness
+
+Description: Changes the brightness of the hologram
+Syntax: ``/hologram edit brightness (block | sky) (0-15)``
+Permission: ``FancyHolograms.admin``
+
+### textAlignment
+
+Description: Enables/disables the text shadow
+Syntax: ``/Hologram edit (hologram) textAlignment (center | left | right)``
+Permission: ``FancyHolograms.admin``
+
+## Item hologram modification
+
+These commands can be run for all **item** holograms.
+
+### item
+
+Description: Sets the hologram item you are holding in your main hand
+Syntax: ``/Hologram edit (hologram) item``
+Permission: ``FancyHolograms.admin``
+
+## Block hologram modification
+
+These commands can be run for all **block** holograms.
+
+### block
+
+Description: Sets the hologram block
+Syntax: ``/Hologram edit (hologram) block (block type)``
+Permission: ``FancyHolograms.admin``
\ No newline at end of file
diff --git a/docs/src/fancyholograms/fancyholograms.md b/docs/src/fancyholograms/fancyholograms.md
new file mode 100644
index 00000000..81f73bad
--- /dev/null
+++ b/docs/src/fancyholograms/fancyholograms.md
@@ -0,0 +1,55 @@
+---
+title: FancyHolograms
+icon: image
+expanded: true
+order: 100
+---
+
+#
+
+
+
+!!!
+Simple, lightweight and feature-rich hologram plugin for Paper and Folia servers using packets.
+!!!
+
+## Features
+
+With this plugin you can create fancy looking holograms with ease. You can customize properties like:
+- **Type** (Text, Block, Item)
+- **Text** (Multiple lines)
+- **Position, Rotation and Scale**
+- **Billboard** (Fixed, Center ...)
+- **MiniMessage formatting**
+- **Placeholders** (PlaceholderAPI, MiniPlaceholders)
+- **FancyNpcs Integration** (hologram as display name)
+- ... and much more!
+
+## Principles
+
+### Simple
+
+The plugin is designed to be easy to use and understand. The commands are well-structured and the tab completion is incredibly helpful.
+You can do everything in-game without the need of touching the configuration files.
+All commands and features are documented in this wiki. If you have any questions, feel free to ask in the Discord server, we are happy to help you.
+
+### Lightweight
+
+The plugin is optimized for performance. It uses packets to send the hologram data to the clients, which is the most efficient way to do it.
+The server does not have to do any additional work, which means that the plugin has a minimal impact on the server performance.
+FancyHolograms does not require ANY dependencies other than Paper.
+
+### Feature-rich
+
+The plugin has a lot of features to offer. You can customize the holograms in many ways and create unique holograms for your server.
+We are constantly working on new innovative features and improvements. If you have any suggestions, feel free to share them with us.
+
+## Download
+
+You can download the latest version of FancyHolograms from the following platforms:
+
+[!button size="s" icon="download" iconAlign="left" text="Download from Modrinth" target="blank"](https://modrinth.com/plugin/fancyholograms/versions)
+
+[!button size="s" icon="download" iconAlign="left" text="Download from Hangar" target="blank"](https://hangar.papermc.io/Oliver/FancyHolograms/versions)
+
+How to get started with FancyHolograms? Check out [this page](getting-started.md).
\ No newline at end of file
diff --git a/docs/src/fancyholograms/faq.md b/docs/src/fancyholograms/faq.md
new file mode 100644
index 00000000..30727622
--- /dev/null
+++ b/docs/src/fancyholograms/faq.md
@@ -0,0 +1,34 @@
+---
+order: 6
+icon: book
+---
+# FAQ
+
+### How to modify each line in a hologram?
+
+Per-line settings (such as scale or background) are not supported in FancyHolograms due to a limitation with display entities.
+
+A separate hologram will need to be created for each line.
+
+### How to add a blank line?
+
+To add a blank line in a hologram, use `` on a new line.
+
+### How to make holograms clickable?
+
+Holograms currently aren't clickable themselves, but [here's](tutorials/clickable-holograms.md) a workaround
+
+### How to make the hologram not to rotate?
+
+To make a hologram not rotate, the billboarding must be set to FIXED.
+
+Example: `/holo edit billboard FIXED`
+
+Once complete, you must set the hologram's rotation with the rotate and rotatepitch commands.
+
+### How to edit the holograms via the data file?
+
+1. Run /fancyholograms save
+2. Back up the holograms.yml file in case something goes wrong
+3. Edit your holograms.yml file as desired
+4. Run /fancyholograms reload after saving the file
\ No newline at end of file
diff --git a/docs/src/fancyholograms/getting-started.md b/docs/src/fancyholograms/getting-started.md
new file mode 100644
index 00000000..239be0ba
--- /dev/null
+++ b/docs/src/fancyholograms/getting-started.md
@@ -0,0 +1,35 @@
+---
+order: 10
+icon: info
+---
+# Getting started
+
+!!! danger
+Be aware, that only Paper and Folia is supported, but the plugin should work on any of its forks (like Purpur or Pufferfish). Spigot, Bukkit, Sponge and Fabric is not supported.
+!!!
+
+## Installation
+
+To install FancyHolograms, you need to download the latest version from one of the following sources:
+
+[!button size="s" icon="download" iconAlign="left" text="Modrinth" target="blank"](https://modrinth.com/plugin/fancyholograms/versions)
+
+[!button size="s" icon="download" iconAlign="left" text="Hangar" target="blank"](https://hangar.papermc.io/Oliver/FancyHolograms/versions)
+
+After downloading the plugin, you can install it by placing the downloaded file in the `plugins` folder of your server.
+
+Restart your server and you are ready to go!
+
+To check if the plugin is installed correctly, you can use the command `/fancyholograms version`. If the plugin is installed correctly, it will show you the version of the plugin.
+
+## Create your first hologram
+
+1. To create your first hologram, you can use the command `/hologram create text myHologram`. This will create a new text hologram with the given name.
+2. To add text to the hologram, you can use the command `/hologram edit myHologram addLine My first hologram`. This will add a new line to the hologram with the given text.
+3. To edit the text of the hologram, you can use the command `/hologram edit myHologram setLine 1 My first hologram`. This will set the text of the first line to the given text.
+4. To change the background of the hologram, you can use the command `/hologram edit myHologram background RED`. This will set the background of the hologram to red.
+5. To move the hologram to your current location, you can use the command `/hologram moveHere myHologram`. This will move the hologram to your current location.
+
+!!!
+You can use MiniMessages in the hologram text. For more information about MiniMessages, you can visit the [MiniMessage documentation](https://docs.advntr.dev/minimessage/format.html).
+!!!
\ No newline at end of file
diff --git a/docs/src/fancyholograms/inspiration.md b/docs/src/fancyholograms/inspiration.md
new file mode 100644
index 00000000..6ecc39f5
--- /dev/null
+++ b/docs/src/fancyholograms/inspiration.md
@@ -0,0 +1,34 @@
+---
+order: 8
+icon: image
+---
+
+# Inspiration
+
+The following examples show how to use FancyNpcs in different ways. They are meant to give you an idea of what you can do with the plugin.
+
+Almost all examples are made by the community. If you have a nice example that you want to share, feel free come to our discord server and show it to us.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/src/fancyholograms/tutorials/clickable-holograms.md b/docs/src/fancyholograms/tutorials/clickable-holograms.md
new file mode 100644
index 00000000..0dd34d73
--- /dev/null
+++ b/docs/src/fancyholograms/tutorials/clickable-holograms.md
@@ -0,0 +1,11 @@
+# Clickable holograms
+
+Interactions with holograms is not a feature of FancyHolograms yet, but there is a workaround for this.
+
+1. Create your hologram with the text you want.
+2. Install [FancyNpcs](../../fancynpcs/getting-started.md)
+3. Create a new npc and set the type to "INTERACTION" (`/npc type (npc name) INTERACTION`)
+4. Remove the name tag of the npc (`/npc displayname (npc name) `)
+5. Position the npc to the same location as the hologram (press F3+B to see the hitbox)
+6. Modify the size of the hitbox to fit the hologram (`/npc attributes (npc name) set (width/height) (size)`)
+7. Add an interaction action to the npc ([action system](../../fancynpcs/tutorials/action-system.md))
\ No newline at end of file
diff --git a/docs/src/fancyholograms/tutorials/tutorials.md b/docs/src/fancyholograms/tutorials/tutorials.md
new file mode 100644
index 00000000..c5b1ac18
--- /dev/null
+++ b/docs/src/fancyholograms/tutorials/tutorials.md
@@ -0,0 +1,7 @@
+---
+order: 7
+icon: mortar-board
+---
+# Tutorials
+
+In this section you will find many tutorials for specific use cases and examples of how to use FancyHolograms. If you have any suggestions for tutorials, please let us know on our discord server.
\ No newline at end of file
diff --git a/docs/src/fancynpcs/fancynpcs.md b/docs/src/fancynpcs/fancynpcs.md
index 12eff972..c6dddabc 100644
--- a/docs/src/fancynpcs/fancynpcs.md
+++ b/docs/src/fancynpcs/fancynpcs.md
@@ -2,7 +2,7 @@
title: FancyNpcs
icon: accessibility
expanded: true
-order: 100
+order: 200
---
#
@@ -50,4 +50,4 @@ You can download the latest version of FancyNpcs from the following platforms:
[!button size="s" icon="download" iconAlign="left" text="Download from Hangar" target="blank"](https://hangar.papermc.io/Oliver/FancyNpcs/versions)
-How to get started with FancyNpcs? Check out the [this page](getting-started.md).
\ No newline at end of file
+How to get started with FancyNpcs? Check out [this page](getting-started.md).
\ No newline at end of file
diff --git a/docs/src/static/fancyholograms/banner.png b/docs/src/static/fancyholograms/banner.png
new file mode 100644
index 00000000..60f5ec7a
Binary files /dev/null and b/docs/src/static/fancyholograms/banner.png differ
diff --git a/docs/src/static/fancyholograms/examples/freshsmp-1.png b/docs/src/static/fancyholograms/examples/freshsmp-1.png
new file mode 100644
index 00000000..bdb88ed1
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/freshsmp-1.png differ
diff --git a/docs/src/static/fancyholograms/examples/freshsmp-2.png b/docs/src/static/fancyholograms/examples/freshsmp-2.png
new file mode 100644
index 00000000..c80d8c5f
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/freshsmp-2.png differ
diff --git a/docs/src/static/fancyholograms/examples/freshsmp-3.png b/docs/src/static/fancyholograms/examples/freshsmp-3.png
new file mode 100644
index 00000000..7a4f0c1d
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/freshsmp-3.png differ
diff --git a/docs/src/static/fancyholograms/examples/freshsmp-4.png b/docs/src/static/fancyholograms/examples/freshsmp-4.png
new file mode 100644
index 00000000..d9c6815c
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/freshsmp-4.png differ
diff --git a/docs/src/static/fancyholograms/examples/freshsmp-5.png b/docs/src/static/fancyholograms/examples/freshsmp-5.png
new file mode 100644
index 00000000..cec60b56
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/freshsmp-5.png differ
diff --git a/docs/src/static/fancyholograms/examples/oliver-1.jpeg b/docs/src/static/fancyholograms/examples/oliver-1.jpeg
new file mode 100644
index 00000000..97cc97d3
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/oliver-1.jpeg differ
diff --git a/docs/src/static/fancyholograms/examples/oliver-2.jpeg b/docs/src/static/fancyholograms/examples/oliver-2.jpeg
new file mode 100644
index 00000000..7dd724e4
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/oliver-2.jpeg differ
diff --git a/docs/src/static/fancyholograms/examples/oliver-3.jpeg b/docs/src/static/fancyholograms/examples/oliver-3.jpeg
new file mode 100644
index 00000000..db23574a
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/oliver-3.jpeg differ
diff --git a/docs/src/static/fancyholograms/examples/oliver-4.jpeg b/docs/src/static/fancyholograms/examples/oliver-4.jpeg
new file mode 100644
index 00000000..6f647d41
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/oliver-4.jpeg differ
diff --git a/docs/src/static/fancyholograms/examples/oliver-5.jpeg b/docs/src/static/fancyholograms/examples/oliver-5.jpeg
new file mode 100644
index 00000000..cce15620
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/oliver-5.jpeg differ
diff --git a/docs/src/static/fancyholograms/examples/silverstone-1.png b/docs/src/static/fancyholograms/examples/silverstone-1.png
new file mode 100644
index 00000000..9d04cf1c
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/silverstone-1.png differ
diff --git a/docs/src/static/fancyholograms/examples/silverstone-2.png b/docs/src/static/fancyholograms/examples/silverstone-2.png
new file mode 100644
index 00000000..9eddae07
Binary files /dev/null and b/docs/src/static/fancyholograms/examples/silverstone-2.png differ
diff --git a/plugins/fancyholograms-v2/README.md b/plugins/fancyholograms-v2/README.md
index d4d2a5f5..56e175dc 100644
--- a/plugins/fancyholograms-v2/README.md
+++ b/plugins/fancyholograms-v2/README.md
@@ -40,7 +40,7 @@ Check out **[images section](#images)** down below.
## Installation
-Paper **1.19.4** - **1.21.4** with **Java 21** (or higher) is required. Plugin should also work on **Paper** forks.
+Paper **1.19.4** - **1.21.5** with **Java 21** (or higher) is required. Plugin should also work on **Paper** forks.
**Spigot** is **not** supported.