Skip to content

Commit 911d403

Browse files
Merge pull request #38 from AndreaGriffiths11/copilot/add-footer-to-page
Add footer with author attribution and MIT license
2 parents 758a7e3 + ca088c6 commit 911d403

2 files changed

Lines changed: 32 additions & 9 deletions

File tree

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.tsx

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,31 @@ git push -f origin main`
310310
</Collapsible>
311311
</Card>
312312
</div>
313+
314+
<footer className="max-w-4xl mx-auto mt-8 py-6 border-t border-border text-center text-sm text-muted-foreground">
315+
<p>
316+
Made with ❤️ by{' '}
317+
<a
318+
href="https://x.com/acolombiadev"
319+
target="_blank"
320+
rel="noopener noreferrer"
321+
className="text-foreground hover:underline"
322+
>
323+
@acolombiadev
324+
</a>
325+
</p>
326+
<p className="mt-1">
327+
Open source under the{' '}
328+
<a
329+
href="/LICENSE"
330+
className="text-foreground hover:underline"
331+
>
332+
MIT License
333+
</a>
334+
</p>
335+
</footer>
313336
</div>
314337
)
315338
}
316339

317-
export default App
340+
export default App

0 commit comments

Comments
 (0)