added picture attributions

This commit is contained in:
ak 2023-08-19 17:36:01 -07:00
parent b78851b5f5
commit 28028b25c5
2 changed files with 22 additions and 2 deletions

View file

@ -30,10 +30,24 @@ function Home() {
className="d-flex flex-grow-1 biglogo" className="d-flex flex-grow-1 biglogo"
alt="Dee's Fish House Logo" alt="Dee's Fish House Logo"
/> />
<div className="d-flex flex-grow-1 panfrying" /> <div className="d-flex flex-grow-1 panfrying">
<a
href="https://www.freepik.com/free-photo/side-view-mushroom-frying-with-gas-stove-fire-human-hand-pan_7724732.htm"
className="text-black"
>
Attribution
</a>
</div>
</div> </div>
<Default /> <Default />
<div className="d-flex fish"></div> <div className="d-flex fish">
<a
href="https://unsplash.com/photos/aISWW34SG88?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
className="text-black"
>
Attribution
</a>
</div>
</> </>
); );

View file

@ -6,5 +6,11 @@ import "../styles/main.scss";
ReactDOM.createRoot(document.getElementById("root")).render( ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode> <React.StrictMode>
<Router /> <Router />
<a
href="https://unsplash.com/photos/QpIayO5KIRE?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
className="text-black"
>
Attribution
</a>
</React.StrictMode> </React.StrictMode>
); );