Skip to content

Commit

Permalink
📝 delete random console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Oculux314 committed Sep 22, 2024
1 parent 1531ad6 commit 61b4b3a
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions next/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ export default async function AboutPage() {
};
}).sort((a, b) => a.Date.getTime() - b.Date.getTime());

console.log(timeline);

return (
<>
<Image src={flair} alt="" className="absolute -z-10 top-[70%]" />
Expand Down
2 changes: 0 additions & 2 deletions next/components/blocks/CenteredText.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
export default function CenteredTextBlock({ props }: { props: any }) {
console.log(props);

return (
<div>
<div>{props.text}</div>
Expand Down
1 change: 0 additions & 1 deletion next/components/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export default async function Header() {
const data = await getHeaderData();
const logoSrc = getLargestImageUrl(data.Logo);
const links = data.navigation;
console.log(data);

return (
<header className={styles.header}>
Expand Down
2 changes: 1 addition & 1 deletion next/components/projects/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Timeline = ({
}: {
timelineElements: ProjectType[];
}) => {
console.log(timelineElements);

return (
<div className="flex flex-col pl-[10%] pt-[5%] pb-[5%]">
<div className="h-4 w-4 bg-white rounded-full"></div>
Expand Down

0 comments on commit 61b4b3a

Please sign in to comment.