Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zcedd committed Aug 3, 2024
1 parent 0fd83e9 commit 30dd1a0
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 52 deletions.
84 changes: 42 additions & 42 deletions components/layouts/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,23 +66,23 @@ const Header = () => {
>
<ul className="flex gap-8 items-center">
{navLinks.map((link) => {
if (link.cName === "cta_resume") {
return (
<motion.li
variants={headerLinksVariants}
key={link.title}
className={link.cName}
>
<a
href={link.url}
target="_blank"
rel="noreferrer"
>
{link.title}
</a>
</motion.li>
);
}
// if (link.cName === "cta_resume") {
// return (
// <motion.li
// variants={headerLinksVariants}
// key={link.title}
// className={link.cName}
// >
// <a
// href={link.url}
// target="_blank"
// rel="noreferrer"
// >
// {link.title}
// </a>
// </motion.li>
// );
// }
return (
<motion.li
variants={headerLinksVariants}
Expand Down Expand Up @@ -121,31 +121,31 @@ const Header = () => {
<nav className="mx-auto px-5 w-full h-full flex">
<ul className="flex flex-col items-center justify-center gap-6 w-full text-xl">
{navLinks.map((link, index) => {
if (link.cName === "cta_resume") {
return (
<motion.li
variants={mobileMenuLink(
index * 0.2,
0.8 - `0.${index}`,
index * 0.2
)}
initial="hidden"
animate="show"
transition="transition"
exit="exit"
key={link.title}
className={link.cName}
>
<a
href={link.url}
target="_blank"
rel="noreferrer"
>
{link.title}
</a>
</motion.li>
);
}
// if (link.cName === "cta_resume") {
// return (
// <motion.li
// variants={mobileMenuLink(
// index * 0.2,
// 0.8 - `0.${index}`,
// index * 0.2
// )}
// initial="hidden"
// animate="show"
// transition="transition"
// exit="exit"
// key={link.title}
// className={link.cName}
// >
// <a
// href={link.url}
// target="_blank"
// rel="noreferrer"
// >
// {link.title}
// </a>
// </motion.li>
// );
// }
return (
<motion.li
variants={mobileMenuLink(
Expand Down
2 changes: 1 addition & 1 deletion components/layouts/Right.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Right = () => {
rel="noreferrer"
className="writing-mode-v-rl text-sm hover:text-primary transition-colors ease-in-out duration-200"
>
Zced Rick Tabladillo
Zcedd
</motion.a>
<div className="w-[1px] h-24 bg-wht" />
</div>
Expand Down
18 changes: 9 additions & 9 deletions constants/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ export const navLinks = [
// },
{
title: "Contact",
cName: "nav_item",
url: "/contact",
},
{
title: "Resume",
url: "https://drive.google.com/file/d/1W47GqOQlSZxF2xqSP6FTLE3GbnEtmj8E/view?usp=sharing",
cName: "cta_resume",
url: "/contact",
},
// {
// title: "Resume",
// url: "https://drive.google.com/file/d/1W47GqOQlSZxF2xqSP6FTLE3GbnEtmj8E/view?usp=sharing",
// cName: "cta_resume",
// },
];

export const emailLink =
Expand All @@ -42,7 +42,7 @@ export const footerSocials = [
{
name: "instagram",
logo: <AiFillInstagram size={22} />,
url: "https://www.instagram.com/zcedd__",
url: "https://www.instagram.com/zcedd1",
},
{
name: "tiktok",
Expand All @@ -62,10 +62,10 @@ export const footerSocials = [
];

export const heroData = {
name: "Zced Rick Tabladillo",
name: "Zcedd",
subheading: "Let me build web stuff for you.",
description:
"A Full-stak Web Developer who loves to turn ideas into reality through web development.",
"A Full-stack Web Developer who loves to turn ideas into reality through web development.",
};

export const aboutData = {
Expand Down

0 comments on commit 30dd1a0

Please sign in to comment.