FEAT: Home page mobile friendly, just not the skills.

Still need to fix the skills module
This commit is contained in:
Hayden Hargreaves 2025-02-24 23:24:33 -07:00
parent 1e1e91bafd
commit c8a73ac1c3
2 changed files with 13 additions and 16 deletions

View File

@ -7,7 +7,7 @@
<div class="bg-[#1b1b1c]"> <div class="bg-[#1b1b1c]">
<Navbar /> <Navbar />
<main class="mx-[13%] my-[9%] h-fit min-h-screen bg-[#1b1b1c]"> <main class="mx-[7%] my-[9%] h-fit min-h-screen overflow-x-hidden bg-[#1b1b1c] md:mx-[13%]">
{@render children()} {@render children()}
</main> </main>
<Footer /> <Footer />

View File

@ -3,11 +3,12 @@
import Skills from '../components/skills.svelte'; import Skills from '../components/skills.svelte';
</script> </script>
<!-- Introduction Section --> <div class="flex h-fit w-full flex-col md:flex-row">
<div class="flex flex h-fit w-full"> <div class="flex-1">
<div class="flex size-full"> <div class="px-4 md:px-0">
<div class=""> <h1 class="py-2 font-mono text-4xl font-[900] text-blue-300 md:text-6xl">
<h1 class="py-2 font-mono text-6xl font-[900] text-blue-300">Building things that matter.</h1> Building things that matter.
</h1>
<p class="my-5 py-2 text-gray-200 italic"> <p class="my-5 py-2 text-gray-200 italic">
I am a <span class="text-blue-300">software engineering student</span> at Embry Riddle I am a <span class="text-blue-300">software engineering student</span> at Embry Riddle
Aeronautical University, Prescott. I am interested in Aeronautical University, Prescott. I am interested in
@ -16,21 +17,17 @@
</p> </p>
</div> </div>
</div> </div>
<!-- DO NOT DELETE THIS --> <div class="hidden flex-1 md:block"></div>
<div class="size-full"></div>
</div> </div>
<div class="mt-24 flex h-full w-full flex-row"> <div class="mt-12 flex w-full flex-col md:mt-24 md:flex-row">
<!-- Left Column --> <div class="flex-1 md:w-2/3">
<div class="flex h-full w-2/3 flex-col"> <div class="w-full px-4 md:w-3/4 md:px-0">
<div class="w-3/4">
<Projects /> <Projects />
</div> </div>
</div> </div>
<div class="mt-12 flex-1 px-4 md:mt-0 md:w-1/3 md:px-0">
<!-- Right Column --> <div class="w-full">
<div class="flex h-full w-1/3 justify-center">
<div class="h-full w-full">
<Skills /> <Skills />
</div> </div>
</div> </div>