diff --git a/src/controllers/panel/placeholder.js b/src/controllers/panel/placeholderController.js
similarity index 100%
rename from src/controllers/panel/placeholder.js
rename to src/controllers/panel/placeholderController.js
diff --git a/src/controllers/panel/popoutContainerController.js b/src/controllers/panel/popoutContainerController.js
new file mode 100644
index 0000000..78082b8
--- /dev/null
+++ b/src/controllers/panel/popoutContainerController.js
@@ -0,0 +1,23 @@
+/*Canopy - The next generation of stoner streaming software
+Copyright (C) 2024 Rainbownapkin and the TTN Community
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as
+published by the Free Software Foundation, either version 3 of the
+License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License for more details.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see .*/
+
+//config
+const config = require('../../../config.json');
+
+//popout panel container functions
+module.exports.get = async function(req, res){
+ res.render('panels/popoutContainer', {instance: config.instanceName});
+}
\ No newline at end of file
diff --git a/src/routers/panelRouter.js b/src/routers/panelRouter.js
index cd6add6..4b5d9d3 100644
--- a/src/routers/panelRouter.js
+++ b/src/routers/panelRouter.js
@@ -19,12 +19,14 @@ const { Router } = require('express');
//local imports
-const placeholderController = require("../controllers/panel/placeholder");
+const placeholderController = require("../controllers/panel/placeholderController");
+const popoutContainerController = require("../controllers/panel/popoutContainerController");
//globals
const router = Router();
//routing functions
router.get('/placeholder', placeholderController.get);
+router.get('/popoutContainer', popoutContainerController.get);
module.exports = router;
diff --git a/src/views/channel.ejs b/src/views/channel.ejs
index f6e1e0c..7826f96 100644
--- a/src/views/channel.ejs
+++ b/src/views/channel.ejs
@@ -19,6 +19,7 @@ along with this program. If not, see .-->
<%- include('partial/styles', {instance, user}); %>
+
<%= instance %> - *DISCONNECTED*
@@ -69,9 +70,10 @@ along with this program. If not, see .-->
+
NULL PANEL
-
+
@@ -79,8 +81,10 @@ along with this program. If not, see .-->