Skip to content

Commit b1f1501

Browse files
committed
✨ feat: add more text
1 parent 5d8e984 commit b1f1501

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

src/components/Footer/Footer.astro

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@
22
import Contact from './Contact.astro';
33
import Subtitle from '../shared/Subtitle.astro';
44
import CustomLink from '../shared/CustomLink.astro';
5+
import CustomParagraph from '../shared/CustomParagraph.astro';
56
---
67

78
<footer>
8-
<div class="grid h-screen max-sm:h-[100dvh]">
9+
<div class="m-1 grid h-screen max-sm:h-[100dvh]">
910
<div id="contact" class="flex flex-col justify-center">
10-
<section class="z-0">
11+
<section class="z-0 mt-8 w-1/2 p-2 max-sm:w-[90%]">
1112
<Subtitle center>Contact</Subtitle>
13+
<div class="reveal mx-0 my-3 text-center">
14+
<CustomParagraph>
15+
I'm always open for new job oportunities or asking any
16+
question. You can reach me through the following social
17+
networks:
18+
</CustomParagraph>
19+
</div>
1220
<address class="reveal text-center">
1321
<Contact
1422
href="mailto:rodriguezcuelloc@gmail.com"
@@ -36,7 +44,7 @@ import CustomLink from '../shared/CustomLink.astro';
3644
<div
3745
class="flex flex-col justify-center font-lato text-[var(--default-font-color)]"
3846
>
39-
<p class="reveal mx-auto my-0 mb-12 text-center text-2xl">
47+
<p class="reveal mx-auto my-0 mb-12 text-center text-3xl">
4048
<strong class="inline italic">© 2022 Carlos Jorge</strong>
4149
<br />
4250
<span>

src/components/Presentation.astro

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,18 @@ import CustomParagraph from './shared/CustomParagraph.astro';
1717
</div>
1818
<div class="reveal">
1919
<h2
20-
class="mx-0 my-3 animate-presentation-main-skill text-4xl text-[2.52rem] font-bold"
20+
class="mx-0 my-3 animate-presentation-main-skill text-4xl text-[2.52rem] font-bold max-sm:mt-4"
2121
>
2222
Welcome to my personal portfolio!
2323
</h2>
2424
</div>
25-
<div class="mx-0 my-3 animate-presentation-description break-words">
25+
<div
26+
class="mx-0 my-6 animate-presentation-description break-words max-sm:mt-7"
27+
>
2628
<CustomParagraph>
2729
Cuban computer scientist from Havana University. Currently
2830
working as full-stack engineer building .net and Vuejs
29-
applications.
31+
applications. I play with astro and rust in my free time
3032
</CustomParagraph>
3133
</div>
3234
</div>

src/components/shared/Subtitle.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const { center = false, left = false, right = false } = Astro.props;
88
---
99

1010
<h2
11-
class="reveal my-2 text-5xl text-[var(--default-font-color)]"
11+
class="reveal my-2 text-5xl font-bold text-[var(--default-font-color)]"
1212
class:list={[
1313
{ 'text-left': left, 'text-center': center, 'text-right': right },
1414
]}

src/styles/styles.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
p {
1818
color: var(--default-font-color);
1919
font-family: var(--default-font-family);
20-
max-width: 650px;
2120
margin: 0.5em 0;
2221
}
2322

@@ -100,10 +99,6 @@ a {
10099
font-size: 15px;
101100
}
102101

103-
p {
104-
max-width: 330px;
105-
}
106-
107102
section {
108103
width: 80%;
109104
}

0 commit comments

Comments
 (0)