Content updates and CSS fixes
All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m3s

This commit is contained in:
2025-07-03 00:25:58 -06:00
parent 75e76fba8c
commit 8b38944954
5 changed files with 5 additions and 6 deletions

View File

@ -30,7 +30,7 @@ const pageDescription = description || siteConfig.meta.description;
<ClientRouter /> <ClientRouter />
</head> </head>
<body class="flex flex-col min-h-screen overflow-x-hidden"> <body class="flex flex-col min-h-screen overflow-x-hidden">
<main class="flex-grow flex flex-col gap-4 items-center justify-center pb-24 sm:pb-20"> <main class="flex-grow flex flex-col gap-4 items-center justify-center">
<slot /> <slot />
</main> </main>
<NavigationBar client:load currentPath={currentPath} /> <NavigationBar client:load currentPath={currentPath} />

View File

@ -6,7 +6,7 @@ import { projects } from "../config/data";
<Layout> <Layout>
<div class="min-h-screen p-4 sm:p-8"> <div class="min-h-screen p-4 sm:p-8">
<h1 class="text-3xl sm:text-4xl font-bold text-secondary mb-6 sm:mb-8 text-center"> <h1 class="text-3xl sm:text-4xl font-bold text-primary mb-6 sm:mb-8 text-center">
Projects Projects
</h1> </h1>
<div class="flex flex-row flex-wrap justify-center gap-4 sm:gap-6 max-w-6xl mx-auto"> <div class="flex flex-row flex-wrap justify-center gap-4 sm:gap-6 max-w-6xl mx-auto">

View File

@ -93,7 +93,7 @@ if (!data) {
<Layout title="Resume"> <Layout title="Resume">
<div class="container mx-auto p-4 sm:p-6 lg:p-8 max-w-4xl w-full"> <div class="container mx-auto p-4 sm:p-6 lg:p-8 max-w-4xl w-full">
<h1 class="text-3xl sm:text-4xl font-bold mb-4 sm:mb-6 text-center"> <h1 class="text-3xl sm:text-4xl font-bold text-primary mb-4 sm:mb-6 text-center">
{data.basics.name} {data.basics.name}
</h1> </h1>

View File

@ -7,7 +7,7 @@ import { talks } from "../config/data";
<Layout> <Layout>
<div class="min-h-screen p-4 sm:p-8"> <div class="min-h-screen p-4 sm:p-8">
<h1 <h1
class="text-3xl sm:text-4xl font-bold text-secondary mb-6 sm:mb-8 text-center" class="text-3xl sm:text-4xl font-bold text-primary mb-6 sm:mb-8 text-center"
> >
Talks Talks
</h1> </h1>

View File

@ -7,7 +7,7 @@ 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">Terminal Mode</h1> <h1 class="text-2xl font-bold text-primary 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>
<div class="h-[60vh] max-h-[500px] min-h-[400px]"> <div class="h-[60vh] max-h-[500px] min-h-[400px]">
@ -17,7 +17,6 @@ import "../styles/global.css";
</Layout> </Layout>
<style> <style>
/* Remove overflow hidden from body to allow normal scrolling */
html, html,
body { body {
height: auto; height: auto;