Created
January 29, 2024 17:11
-
-
Save Mif2006/cb970643244577603e25b66a9781abaf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const Skill_data = [ | |
{ | |
skill_name: "Html 5", | |
Image: "/html.png", | |
}, | |
{ | |
skill_name: "Css", | |
Image: "/css.png", | |
}, | |
{ | |
skill_name: "Java Script", | |
Image: "/js.png", | |
}, | |
{ | |
skill_name: "Tailwind Css", | |
Image: "/tailwind.png", | |
}, | |
{ | |
skill_name: "React", | |
Image: "/react.png", | |
}, | |
{ | |
skill_name: "Redux", | |
Image: "/redux.png", | |
}, | |
{ | |
skill_name: "React Query", | |
Image: "/reactquery.png", | |
}, | |
{ | |
skill_name: "Type Script", | |
Image: "/ts.png", | |
}, | |
]; | |
export const Socials = [ | |
{ | |
name: "Instagram", | |
src: "/instagram.svg", | |
}, | |
{ | |
name: "Youtube", | |
src: "/youtube.svg", | |
}, | |
{ | |
name: "Discord", | |
src: "/discord.svg", | |
}, | |
]; | |
export const Projects = [ | |
{ | |
name: "Star Wars", | |
src: "/starwars.png", | |
description: | |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", | |
}, | |
{ | |
name: "Space", | |
src: "/SpaceWebsite.png", | |
description: | |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", | |
}, | |
{ | |
name: "Matrix", | |
src: "/matrix.png", | |
description: | |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", | |
}, | |
{ | |
name: "Component", | |
src: "/skills.png", | |
description: | |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", | |
}, | |
{ | |
name: "Unicorn", | |
src: "/webapp.png", | |
description: | |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", | |
}, | |
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.yellow-shadow { | |
text-shadow: 0 0 1px #d1d10f, 0 0 30px #000000, 0 0 10px #000000; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const slideFromTop = { | |
hidden: { y: "-100%" }, | |
visible: (i: any) => ({ | |
y: "0", | |
transition: { | |
delay: i * 0.2, // delay each element by 0.2 seconds | |
}, | |
}), | |
exit: { y: "-100%" }, | |
}; | |
export const slideFromBottom = { | |
hidden: { y: "100%", rotate: 0, scaleY: 1 }, | |
visible: (i: any) => ({ | |
y: "0", | |
scaleY: -1, | |
transition: { | |
delay: i * 0.2, // delay each element by 0.2 seconds | |
}, | |
}), | |
exit: { y: "100%", rotate: 0, scaleY: 1 }, | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment