Skip to content

Commit

Permalink
Mainpage
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerartam committed Jul 30, 2024
1 parent 1545cdc commit 7e5fd58
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<header class="flex justify-between py-10 border-b-2 border-gray-700 mx-44 text-gray-700">
<header class="flex justify-between py-10 border-b-2 border-gray-700 mx-40 text-gray-700">
<div class="text-5xl font-light">
<h1>Gerardo Tamayo</h1>
</div>
Expand Down
14 changes: 11 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,17 @@ import { Image } from 'astro:assets';
---

<Layout title="Gerardo Tamayo">
<main>
<div class="flex justify-between my-10 bg-gray-900 mx-44 text-white rounded-2xl">
<Image src={perImage} alt="..." class="rounded-2xl bg-cover h-[550px]"></Image>
<main class="justify-between items-center">
<div class="flex md:flex-row flex-col">
<div class="mt-10 bg-gray-900 text-white md:w-1/2">
<Image src={perImage} alt="..." class="rounded-2xl bg-cover"></Image>
</div>
<div class="md:mt-10 md:w-1/2 w-full bg-white">
<h1 class="text-3xl text-center my-7">Pasisajes</h1>
<p class="mx-6 text-justify">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus minima dignissimos voluptates delectus eveniet aut! Minima nam et nisi maiores quia beatae enim impedit. Harum beatae rem cumque magnam cum.
</p>
</div>
</div>
</main>
</Layout>

0 comments on commit 7e5fd58

Please sign in to comment.