From: Daniel Jr Date: Fri, 28 Feb 2025 18:46:56 +0000 (-0300) Subject: add medium as social link & change projects session to experiences X-Git-Url: https://git.danielmrcl.dev/?a=commitdiff_plain;h=235b0a369643edbf18d69651370bf6572ff4ebbb;p=danielmrcl.dev.git add medium as social link & change projects session to experiences Signed-off-by: Daniel Jr --- diff --git a/data/projects.json b/data/projects.json index f416650..253ad2f 100644 --- a/data/projects.json +++ b/data/projects.json @@ -1,19 +1,37 @@ { "list": [ { - "name": "ArtDigital", - "url": "https://github.com/danielmrcl/art-digital", - "desc": "ArtDigital is an e-commerce that aims to simplify the dissemination and sale of products in the craft sector. #JavaEE #JSP #WebServlets" + "name": "Onnibank", + "url": "#", + "tags": [ + { "name": "current", "color": "#b8bb26" }, + { "name": "work", "color": "#fb4934" } + ], + "desc": "HR solution that combines a unified portal for companies to manage payroll and benefits with an integrated app and card for employees. #SpringBook #Quarkus #Kafka" }, { - "name": "Meeting Rooms", - "url": "https://github.com/danielmrcl/meeting-rooms", - "desc": "SPA written in Angular to manage meeting rooms access. #Angular #SpringBoot" + "name": "Justa", + "url": "#", + "tags": [ + { "name": "work", "color": "#fb4934" } + ], + "desc": "B2B payment solutions fintech that processes over R$1M per month. I worked developing and maintaining the company's systems in a microservices architecture. #PlayFramework #SpringBoot #NestJS" }, { "name": "EncURL", "url": "https://gitlab.com/danielmrcl/encurl-web", + "tags": [ + { "name": "project", "color": "#83a598" } + ], "desc": "Link shortener with some extra features. #VueJS #CSharp" + }, + { + "name": "ArtDigital", + "url": "https://github.com/danielmrcl/art-digital", + "tags": [ + { "name": "project", "color": "#83a598" } + ], + "desc": "ArtDigital is an e-commerce that aims to simplify the dissemination and sale of products in the craft sector. #JavaEE #JSP #WebServlets" } ] } diff --git a/hugo.toml b/hugo.toml index db93b85..6fb8573 100644 --- a/hugo.toml +++ b/hugo.toml @@ -9,48 +9,46 @@ name = "Home" url = "/" weight = 1 -[[menu.main]] -name = "Writings" -url = "https://medium.com/@danielmrcl" -weight = 2 - [markup] - [markup.tableOfContents] - endLevel = 4 - ordered = false - startLevel = 2 - [markup.highlight] - codeFences = true - guessSyntax = false - hl_Lines = "" - lineNoStart = 1 - lineNos = true - lineNumbersInTable = false - noClasses = true - style = "gruvbox" - tabWidth = 4 +[markup.tableOfContents] +endLevel = 4 +ordered = false +startLevel = 2 +[markup.highlight] +codeFences = true +guessSyntax = false +hl_Lines = "" +lineNoStart = 1 +lineNos = true +lineNumbersInTable = false +noClasses = true +style = "gruvbox" +tabWidth = 4 [params] - colortheme = "dark" - rss = false - tocInline = true - logo = "image.jpg" - favicon = "favicon.ico" - description = "Since 2021, I've been developing Java web services using Spring and PostgreSQL in a microservices architecture for critical, efficient and scalable systems." - tagsOverview = true - showProjectsList = true - show_updated = true - showReadTime = false +colortheme = "dark" +rss = false +tocInline = true +logo = "image.jpg" +favicon = "favicon.ico" +description = "Since 2021, I've been developing Java web services using Spring and PostgreSQL in a microservices architecture for critical, efficient and scalable systems." +tagsOverview = true +showProjectsList = true +show_updated = true +showReadTime = false - [params.comments] - enabled = false +[params.comments] +enabled = false - [[params.social]] - name = "github" - link = "https://github.com/danielmrcl" - [[params.social]] - name = "linkedin" - link = "https://www.linkedin.com/in/danielmrcl/" - [[params.social]] - name = "email" - link = "dan@danielmrcl.dev" +[[params.social]] +name = "email" +link = "dan@danielmrcl.dev" +[[params.social]] +name = "linkedin" +link = "https://www.linkedin.com/in/danielmrcl/" +[[params.social]] +name = "github" +link = "https://github.com/danielmrcl" +[[params.social]] +name = "medium" +link = "https://medium.danielmrcl.dev" diff --git a/themes/cactus/layouts/index.html b/themes/cactus/layouts/index.html index 23dda58..feed06f 100644 --- a/themes/cactus/layouts/index.html +++ b/themes/cactus/layouts/index.html @@ -49,11 +49,14 @@ {{ $projectsUrl = .Site.Params.projectsUrl }} {{ end }}
- Projects + Experiences
    {{ range .Site.Data.projects.list }}
  • - {{ .name }}: {{ .desc | markdownify }} + {{ range .tags }} + {{ .name }} + {{ end }} + {{ .name }}: {{ .desc | markdownify }}
  • {{ end }}