Rename page header
All checks were successful
Docker Deploy / build-and-push (push) Successful in 7m40s

This commit is contained in:
2025-06-26 23:43:15 -06:00
parent 607ce7266d
commit 6c2f4e1b81

View File

@ -1,25 +1,26 @@
--- ---
import Layout from '../layouts/Layout.astro'; import Layout from "../layouts/Layout.astro";
import TerminalComponent from '../components/Terminal.tsx'; import TerminalComponent from "../components/Terminal.tsx";
import '../styles/global.css'; import "../styles/global.css";
--- ---
<Layout> <Layout>
<div class="container mx-auto p-4 max-w-6xl w-full"> <div class="container mx-auto p-4 max-w-6xl w-full">
<div class="mb-4 text-center"> <div class="mb-4 text-center">
<h1 class="text-2xl font-bold mb-2">Shell Mode</h1> <h1 class="text-2xl font-bold mb-2">Terminal Mode</h1>
<p class="text-base-content/70">Type 'help' to get started.</p> <p class="text-base-content/70">Type 'help' to get started.</p>
</div>
<div class="h-[60vh] max-h-[500px] min-h-[400px]">
<TerminalComponent client:load />
</div>
</div> </div>
<div class="h-[60vh] max-h-[500px] min-h-[400px]">
<TerminalComponent client:load />
</div>
</div>
</Layout> </Layout>
<style> <style>
/* Remove overflow hidden from body to allow normal scrolling */ /* Remove overflow hidden from body to allow normal scrolling */
html, body { html,
height: auto; body {
overflow: auto; height: auto;
} overflow: auto;
</style> }
</style>