Skip to content

Commit

Permalink
Merge pull request #3 from pangeasi/feature/add-cv
Browse files Browse the repository at this point in the history
feat: add cv
  • Loading branch information
pangeasi committed Oct 12, 2022
2 parents 8f2a4b1 + 50fd283 commit c6695ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 52 deletions.
5 changes: 0 additions & 5 deletions components/Home/AboutMe.tsx
Expand Up @@ -2,11 +2,6 @@ import { useBreakpoint } from "../../hooks/useBreakpoints";
import { motion, useAnimation } from "framer-motion";
import dynamic from "next/dynamic";
import { useState } from "react";
import photo from "../../public/images/avatar.jpeg";
import Image from "next/image";
import LinkedinIcon from "../svgs/Linkedin";
import GithubIcon from "../svgs/Github";
import TwitterIcon from "../svgs/Twitter";

const AboutMe = () => {
const [collapsed, setCollapsed] = useState(true);
Expand Down
51 changes: 4 additions & 47 deletions pages/index.tsx
Expand Up @@ -5,34 +5,13 @@ import { Layout } from "../components/layout/Layout";
import GithubIcon from "../components/svgs/Github";
import LinkedinIcon from "../components/svgs/Linkedin";
import TwitterIcon from "../components/svgs/Twitter";
//import Projects from "../components/Home/projects";
// import { ProjectsIcon } from "../components/Icons/projects";
// import { SkillsIcon } from "../components/Icons/skills";

export default function Home() {
return (
<Layout>
<AboutMe />
{/* <section id="projects">
<h2 className="text-3xl mt-8">
<span>
<ProjectsIcon className="text-5xl inline-flex pb-1" />
</span>{" "}
Proyectos
</h2>
<Projects />
</section> */}

{/* <section id="skills">
<h2 className="text-3xl mt-8">
<span>
<SkillsIcon className="text-5xl inline-flex pb-1" />
</span>{" "}
Habilidades
</h2>
</section> */}
<section id="rrss">
<div className="flex justify-center gap-6">
<div className="flex justify-center gap-6 items-center">
<a
href="https://www.linkedin.com/in/dani-ballesteros/"
target="_blank"
Expand All @@ -57,6 +36,9 @@ export default function Home() {
>
<TwitterIcon className="text-5xl" />
</a>
<a href="https://mnf.red/daniballesteros" target="_blank">
<span className="text-[36px] font-bold text-sky-600">CV</span>
</a>
</div>
</section>
<section id="contact" className="flex flex-col items-center">
Expand All @@ -68,31 +50,6 @@ export default function Home() {
</h2>
<Contact />
</section>
{/* <VStack align="start">
<HStack>
<Text fontWeight="bold" fontSize={{ base: 40 }}>
Hola, soy Dani
</Text>
</HStack>
<Text fontSize={{ base: 20 }}>
Desarrollador front-end, especializado en react
</Text>
</VStack>
<HStack spacing={6} mt={10} justify="end">
<Link href="https://github.com/pangeasi" color="purple.400">
GitHub
</Link>
<Link href="https://twitter.com/Danitiwt" color="blue.400">
Twitter
</Link>
<Link
href="https://www.linkedin.com/in/dani-ballesteros/"
color="green.400"
>
Linkedin
</Link>
</HStack> */}
</Layout>
);
}

1 comment on commit c6695ea

@vercel
Copy link

@vercel vercel bot commented on c6695ea Oct 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.