Skip to content

Commit 25d07af

Browse files
Merge pull request #21 from BregornOriginal/development
update rounded in footer icon
2 parents 9e79f3a + 69e5ea9 commit 25d07af

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const Footer = (props: Props) => {
77
<footer className="sticky bottom-5 w-full cursor-pointer">
88
<div className="flex flex-end items-center pr-6 justify-end">
99
<img
10-
className="h-10 w-10 rounded-full filter grayscale hover:grayscale-0 cursor-pointer rounded-md object-cover"
10+
className="h-10 w-10 rounded-full filter grayscale hover:grayscale-0 cursor-pointer object-cover"
1111
src="https://e00-elmundo.uecdn.es/assets/multimedia/imagenes/2022/04/19/16503736092836.jpg"
1212
alt="An image to homepage"
1313
width={40}

components/Skill.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React from 'react';
22
import { motion } from 'framer-motion';
3-
import { Skill } from '../typings';
3+
import type { Skill as SkillType } from '../typings';
44
import { urlFor } from '../sanity';
55

66
type Props = {
7-
skill: Skill;
7+
skill: SkillType;
88
directionLeft?: boolean;
99
};
1010

components/Skills.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { motion } from 'framer-motion';
33
import Skill from './Skill';
4-
import { Skill as SkillType } from '../typings';
4+
import type { Skill as SkillType } from '../typings';
55

66
type Props = {
77
skills: SkillType[];
@@ -13,7 +13,7 @@ const Skills = ({ skills }: Props) => {
1313
initial={{ opacity: 0 }}
1414
whileInView={{ opacity: 1 }}
1515
transition={{ duration: 1.5 }}
16-
className="flex relative flex-col text-center md:text-left
16+
className="flex relative flex-col text-center md:text-left
1717
xl:flex-row xl:px-10 min-h-screen justify-center xl:space-y-0 mx-auto items-center"
1818
>
1919
<h3 className="absolute top-24 uppercase tracking-[20px] text-gray-500 text-2xl">Skills</h3>

pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Skills from '../components/Skills';
99
import Projects from '../components/Projects';
1010
import Contact from '../components/Contact';
1111
import AIChatWidget from '../components/AIChatWidget';
12-
import { PageInfo, Experience, Skill, Project, Social } from '../typings';
12+
import type { PageInfo, Experience, Skill, Project, Social } from '../typings';
1313
import { fetchPageInfo } from '../utils/fetchPageInfo';
1414
import { fetchExperiences } from '../utils/fetchExperience';
1515
import { fetchProjects } from '../utils/fetchProjects';

0 commit comments

Comments
 (0)