diff --git a/Elysia.png b/Elysia.png
new file mode 100644
index 0000000..a8e039f
Binary files /dev/null and b/Elysia.png differ
diff --git a/README.md b/README.md
index 108989e..bd60ac2 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
-# Eona
-
-Eona is (to start) a birthday bot for kenny
\ No newline at end of file
+# Elysia
+![Elysia](/Elysia.png)
+Elysia is a birthday bot (for now) designed by advtech.bots@gmail.com, it is mainly to be used by the Kennevo's Chaos Community Discord Server. Elysia is open source and can be found [here](https://giteas.fullmooncyberworks.com/advtech/Elysia) and [on GitHub](https://github.com/advtech/Elysia).
\ No newline at end of file
diff --git a/logger.py b/logger.py
index 3e3b890..82236cf 100644
--- a/logger.py
+++ b/logger.py
@@ -7,13 +7,13 @@ logging.basicConfig(
     datefmt="%Y-%m-%d %H:%M:%S",
 )
 
-log_file = "logs/EONA.log"
+log_file = "logs/Elysia.log"
 handler = RotatingFileHandler(log_file, maxBytes=1e6, backupCount=5)
 formatter = logging.Formatter(
     "%(asctime)s:%(levelname)s:%(name)s: %(message)s")
 handler.setFormatter(formatter)
 
 
-logger = logging.getLogger("EONA")
+logger = logging.getLogger("Elysia")
 logger.addHandler(handler)
 logger.setLevel(logging.INFO)
diff --git a/main.py b/main.py
index 0859436..35becd4 100644
--- a/main.py
+++ b/main.py
@@ -2,7 +2,7 @@ from config import config
 import discord
 from logger import logger
 
-logger.info("Starting EONA...")
+logger.info("Starting Elysia...")
 
 TOKEN = config["TOKEN"]
 
diff --git a/privacy.md b/privacy.md
index 631c7d4..b9d5069 100644
--- a/privacy.md
+++ b/privacy.md
@@ -1,7 +1,7 @@
 # Privacy Policy
 
 ## Introduction
-Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal data when you use our Discord bot, **[Your Bot Name]**. By using the bot, you agree to the collection and use of information in accordance with this policy.
+Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal data when you use our Discord bot, **Elysia**. By using the bot, you agree to the collection and use of information in accordance with this policy.
 
 ## Data We Collect
 
diff --git a/tos.md b/tos.md
index 1f0ba86..32cf042 100644
--- a/tos.md
+++ b/tos.md
@@ -1,7 +1,7 @@
 # Terms of Service
 
 ## Introduction
-Welcome to **[Your Bot Name]**. By using our Discord bot, you agree to these Terms of Service. Please read them carefully.
+Welcome to **Elysia**. By using our Discord bot, you agree to these Terms of Service. Please read them carefully.
 
 ## Use of the Bot
 - **Compliance:** You agree to use the bot in compliance with all applicable laws and Discord's Terms of Service.
diff --git a/user/birthday.py b/user/birthday.py
index b0d7dbb..260a606 100644
--- a/user/birthday.py
+++ b/user/birthday.py
@@ -11,7 +11,7 @@ from user_data.data_access import DataAccessManager
 class Birthday:
     def __init__(self, client):
         self.client = client
-        self.db_path = "data/EONA.db"
+        self.db_path = "data/Elysia.db"
         self.logger = logger
         self.consent_manager = ConsentManager(self.db_path)
         self.data_access_manager = DataAccessManager(self.db_path)