Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions public/img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 25 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@
};

return (
<main className="text-center px-8 py-12 max-w-xl mx-auto flex justify-center align-center items-center min-h-screen">
<div>
<main className="min-h-screen flex flex-col text-center">
<div className="flex-1 flex flex-col justify-center px-8 py-12 max-w-xl mx-auto w-full">
{unsupportedBrowser && (
<div className="border p-2 rounded-lg bg-yellow-200 my-2 text-sm mb-8">
<p className="font-semibold">⚠️ Unsupported Browser Detected</p>
Expand Down Expand Up @@ -312,6 +312,29 @@
</p>
</div>
</div>
<footer className="bg-[#303846] text-center py-8 px-4">
<div className="container max-w-xl mx-auto">
<div className="mb-4">
<a
href="https://techforpalestine.org"
target="_blank"
rel="noopener noreferrer"
className="inline-block"
>
<img

Check warning on line 324 in src/app/page.tsx

View workflow job for this annotation

GitHub Actions / build

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="/img/logo.svg"
alt="Tech For Palestine Logo"
width={320}
height={180}
className="mx-auto"
/>
</a>
</div>
<p className="text-sm text-[#ebedf0]">
An open source initiative of the Tech For Palestine collective
</p>
</div>
</footer>
</main>
);
}
Loading