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,13 +1,13 @@
---
import Layout from '../layouts/Layout.astro';
import TerminalComponent from '../components/Terminal.tsx';
import '../styles/global.css';
import Layout from "../layouts/Layout.astro";
import TerminalComponent from "../components/Terminal.tsx";
import "../styles/global.css";
---
<Layout>
<div class="container mx-auto p-4 max-w-6xl w-full">
<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>
</div>
<div class="h-[60vh] max-h-[500px] min-h-[400px]">
@ -18,7 +18,8 @@ import '../styles/global.css';
<style>
/* Remove overflow hidden from body to allow normal scrolling */
html, body {
html,
body {
height: auto;
overflow: auto;
}