Hello, I am trying to create a page within my plugin that is only using Acorn and Bud. I am using the experimental routes feature. How can I create a page that utilizes the native theme the WP installation is using? I have access to the radicle repo and attempted to copy layouts/app.blade.php however it did not appear to work correctly. Any direction would be greatly appreciated.
app.blade.php
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app">
<main id="main" class="max-w-5xl mx-auto">
<div class="px-6">
@yield('content')
</div>
</main>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
</html>
Output: