Skip to content

Commit

Permalink
fix: footer logo and about content (#421)
Browse files Browse the repository at this point in the history
* fix footer logo
remove useless about.md

* quick fix
  • Loading branch information
zalborzi authored Aug 28, 2024
1 parent 878b9d2 commit dda2c69
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 38 deletions.
37 changes: 0 additions & 37 deletions public/about.md

This file was deleted.

6 changes: 5 additions & 1 deletion src/app/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ function Footer() {
<div className="container mx-auto flex flex-col gap-16 md:flex-row md:gap-24">
{/* First column: About the project */}
<div className="flex flex-col items-start gap-4 w-full md:w-3/5">
<Image src={footerLogo} alt="Footer logo" width={80} />
<Image
src={footerLogo}
alt="Footer logo"
style={{ maxWidth: "300px" }}
/>
<p className="text-xs md:text-sm">
{contentConfig.footerText.split("\n").map((line, index) => (
<span key={index}>
Expand Down

0 comments on commit dda2c69

Please sign in to comment.