Skip to content

Commit

Permalink
- Yet another quick fix for the same issue as the last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKlus committed Jan 21, 2024
1 parent 3f95857 commit e8bb967
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/container/PortfolioCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Image from 'next/image';

interface IPortfolioCardProps {
className?: string;
image: StaticImageData;
image: StaticImageData | string;
alt: string;
}

Expand Down
4 changes: 1 addition & 3 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ import dynamic from 'next/dynamic';
import redSolitudePic from '../../public/redsolitude.png';
import solitudePic from '../../public/solitude.png';
import solitudeVSCPic from '../../public/screenshot_red.png';
import receiptManagerPic from 'https://kyleklus.github.io/projectPostFiles/ReceiptManagerBillEditor.png';


import Link from 'next/link';
import PortfolioCard from '@/components/container/PortfolioCard';
Expand Down Expand Up @@ -108,7 +106,7 @@ export default function Home() {
<div className={[homeStyles.portfolioCardWrapper].join(' ')}>
<h2 className={[homeStyles.leftHeading].join(' ')}>Webapps 🔗</h2>

<PortfolioCard image={receiptManagerPic} alt='Receipt Manager Promo Screenshot'>
<PortfolioCard image={'https://kyleklus.github.io/projectPostFiles/ReceiptManagerBillEditor.png'} alt='Receipt Manager Promo Screenshot'>
<h4>Receipt Manager (<Link href={'https://github.com/KyleKlus/receipt-manager'}>GitRepo</Link>) </h4>
The <Link href={'/projectPosts/coding/website/Receipt-Manager'}>receipt manager</Link> is a web app, which helps you calculate the amount of money a person gets from another person, when they and the other person have an occasion where both paid for some expenses and then need to split the bills again.
</PortfolioCard>
Expand Down

0 comments on commit e8bb967

Please # to comment.