Skip to content

Commit fac5c9d

Browse files
committed
Portfolio updated
1 parent 1dff753 commit fac5c9d

File tree

7 files changed

+40
-15
lines changed

7 files changed

+40
-15
lines changed

data/blog/welcome-to-my-portfolio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tags: [astro, tailwind css, front-end]
1111

1212
My name is Jesus and this is my first blog post!
1313

14-
Just to let you know a little more about me, I studied Games Programming at the Sae Institute in London and I finished university in 2019. After that I've been working as a System Administrator, Devops and Developer (Yes, three roles) for an IT Support Company. During this period I grew as a developer and my interest into building applications that can help people day to day grow up to the point that I joined a Swift Developer Program.
14+
Just to let you know a little more about me, I studied Games Programming at the SAE Institute in London and I finished university in 2019. After that I've been working as a System Administrator, Devops and Developer (Yes, three roles) for an IT Support Company. During this period I grew as a developer and my interest into building applications that can help people day to day grow up to the point that I joined a Swift Developer Program.
1515

1616
Swift Developer Program is a coding boot camp where I will learn the bits and pieces of iOS Development with Swift and Swift UI. The boot camp will finish in January and I expect to grow the skill to make wonderful apps free of bugs and crashes.
1717

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
pubDate: "Oct 15 2022"
3-
title: "Coming Soon"
4-
description: "I'm currently working on some projects, once they are ready I will post them here"
3+
title: "Portfolio"
4+
description: "My portfolio"
55
image: "~/assets/images/apple-dev.webp"
66
# category: "Blog"
77
# tags: [swift, swiftUI]

src/assets/images/TBBT.png

1.73 MB
Loading

src/assets/images/bookstory.png

1.34 MB
Loading

src/components/widgets/Index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Picture from '~/components/core/Picture.astro';
1111
<span class="bg-clip-text text-transparent bg-gradient-to-r from-secondary-600 to-primary-600">Hello World!</span> 👋
1212
</h1>
1313
<h1 class="text-5xl md:text-[3.50rem] font-bold leading-tighter tracking-tighter mb-4 font-heading">
14-
I'm Jesus and I'm an iOS Developer
14+
I'm Jesus and I'm an iOS Software Engineer
1515
</h1>
1616
<div class="max-w-3xl mx-auto">
1717
<p class="text-xl text-gray-600 mb-8 dark:text-slate-400">

src/config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ export const SITE = {
44
origin: 'https://jsanz.dev',
55
basePathname: '/',
66

7-
title: 'Jesus Sanz | iOS Developer',
8-
description: '🧑🏻‍💻 Jesus Sanz | iOS Developer Portfolio',
7+
title: 'Jesus Sanz | iOS Softwre Engineer',
8+
description: '🧑🏻‍💻 Jesus Sanz | iOS Software Engineer Portfolio',
99

1010
// googleAnalyticsId: false, // or "G-XXXXXXXXXX",
1111
// googleSiteVerificationId: 'orcPxI47GSa-cRvY11tUe6iGg2IO_RPvnA1q95iEM3M',

src/pages/[...portfolio]/[...page].astro

Lines changed: 34 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,50 @@ const meta = {
3636
<Fragment slot="title">
3737
<span class="bg-clip-text text-transparent bg-gradient-to-r from-secondary-600 to-primary-600">Portfolio</span>
3838
<h1 class="text-5xl md:text-[3.50rem] font-bold leading-tighter tracking-tighter mb-4 font-heading">
39-
Coming Soon!
39+
The Big Bang Theory Episode Guide APP!
4040
</h1>
4141
<div class="max-w-3xl mx-auto">
4242
<p class="text-xl text-gray-600 mb-8 dark:text-slate-400">
43-
I'm currently working on some projects, once they are ready I will post them here
43+
Are you a fan of The Big Bang Theory? I have an episode guide for you! Using SwiftUI, Swift and API rest with the series episodes and info I built an application to help you track your favorite episodes.
4444
</p>
4545
<p class="text-xl text-gray-600 mb-8 dark:text-slate-400">
46-
Happy Coding!
46+
You can see the application in my GitHub repository -> <a href="https://github.com/jsanzdev/BBTGuide">Click here!</a>
4747
</p>
4848
</div>
4949
<div>
5050
<div class="relative mb-8 m-auto max-w-3xl">
5151
<Picture
52-
src={import('~/assets/images/apple-dev.webp')}
53-
class="mx-auto rounded-md shadow-lg bg-gray-400 dark:bg-slate-700 w-full"
54-
widths={[400, 767]}
55-
sizes=" (max-width: 767px) 400px, 768px"
56-
alt="Jesus Sanz Avatar"
57-
aspectRatio="16:9"
52+
src={import('~/assets/images/tbbt.png')}
53+
class="mx-auto rounded-md shadow-lg bg-gray-400 dark:bg-slate-700"
54+
widths={[400, 100]}
55+
sizes=" (max-width: 100px) 400px, 100px"
56+
alt="The Big Bang Theory Episode Guide"
57+
aspectRatio="9:20"
58+
/>
59+
</div>
60+
</div>
61+
<br>
62+
<br>
63+
<h1 class="text-5xl md:text-[3.50rem] font-bold leading-tighter tracking-tighter mb-4 font-heading">
64+
Story Book - A book Store!
65+
</h1>
66+
<div class="max-w-3xl mx-auto">
67+
<p class="text-xl text-gray-600 mb-8 dark:text-slate-400">
68+
Using SwiftUI, Swift and API rest with the series episodes and info I built a Book Store application. The API that I worked with had different functions like geting random books as the latest books. I also used the API to get the book details and the book cover. You can mark books as read and see the list on a different tab. All the data is in the server and nothing is stored on the device.
69+
</p>
70+
<p class="text-xl text-gray-600 mb-8 dark:text-slate-400">
71+
You can see the application in my GitHub repository -> <a href="https://github.com/jsanzdev/BookStory">Click here!</a>
72+
</p>
73+
</div>
74+
<div>
75+
<div class="relative mb-8 m-auto max-w-3xl">
76+
<Picture
77+
src={import('~/assets/images/bookstory.png')}
78+
class="mx-auto rounded-md shadow-lg bg-gray-400 dark:bg-slate-700"
79+
widths={[400, 100]}
80+
sizes=" (max-width: 200px) 400px, 100px"
81+
alt="The Big Bang Theory Episode Guide"
82+
aspectRatio="9:20"
5883
/>
5984
</div>
6085
</div>

0 commit comments

Comments
 (0)