Skip to content

Instantly share code, notes, and snippets.

@Mif2006
Created November 9, 2023 08:56
Show Gist options
  • Save Mif2006/d1b3726d1279e10a2fe6a868b955a57f to your computer and use it in GitHub Desktop.
Save Mif2006/d1b3726d1279e10a2fe6a868b955a57f to your computer and use it in GitHub Desktop.
Snippets for web portfolio
import { RxHome, RxPerson, RxDashboard, RxClipboard } from "react-icons/rx";
export const SkillData = [
{
name: "Html 5",
Image: "/html.png",
width: 80,
height: 80,
},
{
name: "Css",
Image: "/css.png",
width: 80,
height: 80,
},
{
name: "JavaScript",
Image: "/js.png",
width: 65,
height: 65,
},
{
name: "Tailwind Css",
Image: "/tailwind.png",
width: 80,
height: 80,
},
{
name: "React",
Image: "/react.png",
width: 80,
height: 80,
},
{
name: "Redux",
Image: "/redux.png",
width: 80,
height: 80,
},
{
name: "TypeScript",
Image: "/ts.png",
width: 80,
height: 80,
},
{
name: "Next js 13",
Image: "/next.png",
width: 80,
height: 80,
},
{
name: "Framer Motion",
Image: "/framer.png",
width: 80,
height: 80,
},
{
name: "Stripe Payment",
Image: "/stripe.webp",
width: 80,
height: 80,
},
{
name: "Node js",
Image: "/node-js.png",
width: 80,
height: 80,
},
{
name: "Mongo db",
Image: "/mongodb.png",
width: 40,
height: 40,
},
];
export const Socials = [
{
name: "Discord",
src: "/instagram.svg",
},
{
name: "Facebook",
src: "/facebook.svg",
},
{
name: "Instagram",
src: "/discord.svg",
},
];
export const Projects = [
{
title: "Modern Nextjs Website",
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.",
src: "/NextWebsite.png",
},
{
title: "Space Themed Website",
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.",
src: "/SpaceWebsite.png",
},
{
title: "Modern Nextjs Portfolio",
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.",
src: "/WebPortfolio.png",
},
{
title: "Matrix themed Website",
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.",
src: "/Matrix.png",
},
];
export const NavLinks = [
{
name: "/",
icon: RxHome,
link: "/",
},
{
name: "/my-skills",
icon: RxPerson,
link: "/my-skills",
},
{
name: "/my-projects",
icon: RxDashboard,
link: "/my-projects",
},
{
name: "/contact-me",
icon: RxClipboard,
link: "/contact-me",
},
];
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
overflow: hidden;
}
.flip-card-inner {
transition: transform 0.6s;
transform-style: preserve-3d;
}
.flip-card-front,
.flip-card-back {
position: absolute;
backface-visibility: hidden;
}
.flip-card-back {
transform: rotateY(180deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment