Skip to content

Commit

Permalink
download cv habilited and fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
PhelipeG committed Sep 5, 2024
1 parent 196711e commit e994cb3
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 22 deletions.
Binary file added public/curriculo/Luis Felipe Pdf.pdf
Binary file not shown.
25 changes: 18 additions & 7 deletions src/components/about-section.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use client';
"use client";
import Image from "next/image";
import { useState, useTransition } from "react";
import TabButton from "./tabbar-button";
Expand All @@ -12,13 +12,12 @@ import {
import Link from "next/link";
import Meteors from "./magicui/meteors";


const TAB_DATA = [
{
title: "Skills",
id: "skills",
content: (
<ul className="text-gray-400 pl-2">
<ul className="text-gray-400 grid grid-cols-1 sm:grid-cols-2 ">
<li>ReactJs</li>
<li>NextJs</li>
<li>React Native</li>
Expand All @@ -27,6 +26,9 @@ const TAB_DATA = [
<li>Javascript</li>
<li>Typescript</li>
<li>Styled-Components</li>
<li>Zustand</li>
<li>Firebase</li>
<li>Git e Github</li>
</ul>
),
},
Expand Down Expand Up @@ -112,7 +114,10 @@ export function AboutSection() {
}

return (
<section className="relative mt-4 flex w-full flex-col items-center justify-center overflow-hidden rounded-lg py-8 border-2 border-green-500 bg-background md:shadow-xl" id="about">
<section
className="relative mt-4 flex w-full flex-col items-center justify-center overflow-hidden rounded-lg py-8 border-2 border-green-500 bg-background md:shadow-xl"
id="about"
>
<Meteors number={250} />
<div className="md:grid md:grid-cols-2 gap-8 items-center py-8 px-4 xl:gap-16 sm:py-16 xl:px-16">
<Image
Expand All @@ -125,7 +130,15 @@ export function AboutSection() {
<div className="mt-4 md:mt-0 text-left flex flex-col h-full">
<h2 className="text-4xl font-bold text-black mb-4">Sobre Mim</h2>
<div className="blur-background text-gray-800 p-14">
Me chamo Luis Felipe sou desenvolvedor front-end e mobile com experiência na criação de interfaces modernas e intuitivas usando <strong>React,NextJs ,Typescript e React Native</strong>. No estágio, desenvolvi features e dei manutenção na plataforma inteligente de peixes e camarão na Aquabit, criei vários projetos pessoais e para comunidade como o Rifa Social 2.0, impactando na comunidade local. Focado em entregar soluções escaláveis e de alta qualidade, estou sempre em busca de novos desafios para aprimorar a experiência do usuário
Me chamo Luis Felipe sou desenvolvedor front-end e mobile com
experiência na criação de interfaces modernas e intuitivas usando{" "}
<strong>React,NextJs ,Typescript e React Native</strong>. No
estágio, desenvolvi features e dei manutenção na plataforma
inteligente de peixes e camarão na Aquabit, criei vários projetos
pessoais e para comunidade como o Rifa Social 2.0, impactando na
comunidade local. Focado em entregar soluções escaláveis e de alta
qualidade, estou sempre em busca de novos desafios para aprimorar a
experiência do usuário
</div>
<div className="flex flex-row justify-start mt-8">
<TabButton
Expand Down Expand Up @@ -162,8 +175,6 @@ export function AboutSection() {
</div>
</div>
</div>


</section>
);
}
21 changes: 6 additions & 15 deletions src/components/hero-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,17 @@ export function HeroSection() {
<section className="lg:py-16">
<div className="grid grid-cols-1 sm:grid-cols-12">
{/* Secao de Informacoes */}
<div
className="col-span-8 place-self-center text-center justify-self-start"
>
{/* <div className="flex flex-col items-center sm:items-start mx-4">
<GradualSpacing
className="font-display text-center sm:text-left text-4xl font-bold tracking-[-0.1em] text-black md:text-2xl break-words"
text="Luis Felipe"
/>
</div> */}
<div className="col-span-8 place-self-center text-center justify-self-start">
<div className="container flex flex-col">
<GradualSpacing
<GradualSpacing
className="text-2xl lg:text-4xl font-bold md:leading-[5rem] text-black"
text="Luis Felipe"
/>
<GradualSpacing
<GradualSpacing
className="text-2xl lg:text-4xl font-bold text-black"
text="Front-end e Mobile Developer "
/>
</div>


<div className="mx-4">
<Link
Expand All @@ -43,7 +32,9 @@ export function HeroSection() {
</Link>

<Link
href="/"
href="/Cv/Demo-CV.pdf"
download={"My-CV"}
target="_blank"
className="p-4 inline-block py-2 w-full sm:w-fit rounded-full mx-2 text-white mt-3"
>
<span className="block bg-[#121212] rounded-full px-5 py-2">
Expand Down

0 comments on commit e994cb3

Please sign in to comment.