Skip to content

Commit

Permalink
chore: update headline in the homepage
Browse files Browse the repository at this point in the history
chore: skills update
  • Loading branch information
floroz committed Dec 18, 2024
1 parent c25b73b commit 99c8d96
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 37 deletions.
32 changes: 6 additions & 26 deletions components/views/home-page/about-section.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script setup lang="ts">
import BaseButtonLink from "~~/components/atoms/base-button-link/base-button-link.vue";
import { headline } from "~/config/resume-schema";
</script>

<template>
Expand All @@ -8,6 +9,11 @@
class="m-auto flex max-w-4xl flex-col items-center gap-y-12 p-4 sm:px-8"
>
<h2 class="text-gradient text-left text-4xl">About me</h2>
<div class="text-primary flex flex-col gap-y-8 text-lg">
<p>
{{ headline }}
</p>
</div>
<BaseButtonLink
external
href="/pdf/resume.pdf"
Expand All @@ -19,32 +25,6 @@
/>
</template>
</BaseButtonLink>
<div class="text-primary flex flex-col gap-y-8 text-lg">
<p>
Software Engineer with 8+ years of experience in frontend architecture
and full-stack development. I craft intuitive, user-centric
applications using modern frameworks like React, Vue, and Angular.
I’ve designed and implemented robust component libraries and design
systems that enhance consistency and accelerate development across
organizations.
</p>
<p>
On the backend, I have extensive experience building distributed
microservices, designing efficient APIs (REST, GraphQL, gRPC), and
integrating with scalable systems using Node.js, PostgreSQL, and
Redis. My expertise extends to optimizing data pipelines, ensuring
system reliability, and implementing cloud-native solutions with
Kubernetes and AWS.
</p>

<p>
With a strong focus on DevOps practices, I excel in CI/CD automation,
containerization with Docker, and deploying robust production
environments. Passionate about solving complex engineering challenges,
I aim to deliver impactful software solutions that drive business
success and improve user experiences.
</p>
</div>
</div>
</section>
</template>
8 changes: 4 additions & 4 deletions components/views/home-page/hero-section.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
</p>
<!-- title -->
<h1 class="text-gradient py-2 text-center text-4xl md:text-5xl">
Crafting innovative software solutions
<br class="hidden md:inline-block" />that deliver exceptional user
experiences<br class="hidden md:inline-block" />and drive technical
excellence.
I love solving problems
<br class="hidden md:inline-block" />and building software.<br
class="hidden md:inline-block"
/>
</h1>
<!-- CTA -->
<BaseButtonLink
Expand Down
13 changes: 6 additions & 7 deletions config/resume-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,25 +82,24 @@ export const resumeSchema: ResumeSchema = {

export const skillGroups: Array<{ groupName: string; skills: string[] }> = [
{
groupName: "Programming Languages",
skills: ["TypeScript", "JavaScript", "Node.js", "Go", "Golang", "PHP"],
groupName: "Languages",
skills: ["TypeScript", "JavaScript", "Go", "PHP", "HTML", "CSS"],
},
{
groupName: "Web Technologies",
skills: [
"React",
"Node.js",
"Next.js",
"Express",
"Vue",
"Nuxt",
"Angular",
"HTML",
"CSS",
"Tailwind",
"GraphQL",
],
},
{
groupName: "DevOps Tools",
skills: ["Docker", "Kubernetes", "CircleCI", "GitHub Actions", "Jenkins"],
skills: ["Docker", "Kubernetes", "Helm", "CircleCI", "GitHub Actions"],
},
{
groupName: "Database Systems",
Expand Down

0 comments on commit 99c8d96

Please sign in to comment.