diff --git a/src/components/Blockquote.astro b/src/components/Blockquote.astro index fbf4de3..0c7b608 100644 --- a/src/components/Blockquote.astro +++ b/src/components/Blockquote.astro @@ -8,7 +8,12 @@ const { text, source } = Astro.props; ---
-

Contact me

-

Whether you're willing to work with me, or want a chat with me, feel free to contact me any time! I'll do my best to answer to emails in short time.

+

+ Whether you're willing to work with me, or want a chat with me, feel free + to contact me any time! I'll do my best to answer to emails in short time. +

@@ -15,22 +18,65 @@ stroke-width="2" stroke-linecap="round" stroke-linejoin="round" - class="feather feather-mail"> Email me - - GitHub - - + Book a meeting diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 8e3b330..e0e94cf 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -12,7 +12,8 @@ const today = new Date(); Hosted on green energygreen energy in Europe.

diff --git a/src/components/Greeting.astro b/src/components/Greeting.astro index 77f7f27..99f06fa 100644 --- a/src/components/Greeting.astro +++ b/src/components/Greeting.astro @@ -1,5 +1,5 @@ --- -const messages = ['Hi', 'Hello', 'Hey', 'Welcome', 'Ciao', 'Xin chΓ o']; +const messages = ['Hi', 'Hello', 'Hey', 'Welcome', 'Ciao']; const emojis = ['🍻', 'πŸ§‘β€πŸ’»', 'πŸ‘‹', '😎']; const randomMessage = messages[Math.floor(Math.random() * messages.length)]; const randomEmoji = emojis[Math.floor(Math.random() * emojis.length)]; @@ -10,12 +10,12 @@ const randomEmoji = emojis[Math.floor(Math.random() * emojis.length)]; {randomEmoji} diff --git a/src/pages/index.astro b/src/pages/index.astro index a303681..14226f2 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -19,10 +19,18 @@ import Privacy from '../components/Privacy.astro';