diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 2cc670a..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,2 +0,0 @@ -custom: - ["https://donate.stripe.com/7sI5m5146ehfddm7tj", "https://nextlessjs.com"] diff --git a/public/assets/images/profile.jpeg b/public/assets/images/profile.jpeg index dbb3efb..ed2ae74 100644 Binary files a/public/assets/images/profile.jpeg and b/public/assets/images/profile.jpeg differ diff --git a/public/assets/jsons/profile.json b/public/assets/jsons/profile.json index 22d1698..1116f85 100644 --- a/public/assets/jsons/profile.json +++ b/public/assets/jsons/profile.json @@ -4,6 +4,7 @@ "introductionBio": "A full-stack developer focused on results, with strong skills in performance optimization and efficiency. Committed to delivering pragmatic solutions that delivers what the customer needs with etichal and responsability.", "bio": "In recent years, my journey in development has been marked by a challenging narrative, filled with achievements and significant learnings. When I embarked on this journey, I faced a steep learning curve, delving into the complexities of both front-end and back-end. Every line of code was an accomplishment, and every challenge was an opportunity for growth. Crafting intuitive interfaces and architecting robust solutions became my daily mantra.\n\nHowever, the true essence of development goes beyond the code. I found myself consistently challenged to translate customer needs into tangible solutions. Additionally, the importance of data security and respect for user privacy became integral aspects of my daily work.\n\nThese years in development are not just a chapter but the foundation for what lies ahead. I am excited to embrace future opportunities, apply the knowledge gained, and contribute to shaping the ever-evolving technological landscape.", "email": "lucascdemorais@gmail.com", + "phone": "5521995366450", "experience": [ { "title": "Intelie by Viasat", diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx new file mode 100644 index 0000000..cf6c336 --- /dev/null +++ b/src/components/Footer/index.tsx @@ -0,0 +1,16 @@ +import { HeartFilled } from '@ant-design/icons'; +import React from 'react'; + +const Footer = () => { + return ( + + ); +}; + +export default Footer; diff --git a/src/components/LanguageChart/index.tsx b/src/components/LanguageChart/index.tsx index 852726b..e857c20 100644 --- a/src/components/LanguageChart/index.tsx +++ b/src/components/LanguageChart/index.tsx @@ -21,6 +21,8 @@ const buildState = ( options: { chart: { type: 'bar', + fontFamily: + 'ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"', height: 550, toolbar: { show: false, diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index c0e1839..38b91d6 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -1,29 +1,59 @@ -import React from 'react'; +import React, { useState } from "react"; -import Link from '@/components/Link'; +import Link from "@/components/Link"; -import Logo from '../logo'; +import Logo from "../logo"; interface Props { logoTitle: string; } export default function Navbar({ logoTitle }: Props) { + const [menuOpen, setMenuOpen] = useState(false); + return ( -