Skip to content

Commit 35045d9

Browse files
committed
Add disclaimer footer to homepage
1 parent 76136b3 commit 35045d9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/website/app/(home)/page.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const features = [
2020

2121
export default function HomePage() {
2222
return (
23-
<main className="w-full min-w-0 max-w-6xl px-8 pt-4 pb-12 md:px-12 mx-auto">
23+
<main className="w-full min-w-0 max-w-6xl px-8 pt-4 pb-0 md:px-12 mx-auto">
2424
<ESLintReact />
2525
<article className="prose max-w-none">
2626
<h2>Features</h2>
@@ -46,6 +46,9 @@ export default function HomePage() {
4646
</Link>.
4747
</p>
4848
</article>
49+
<footer className="text-center text-sm text-gray-500 mt-8">
50+
<small>ESLint React is not affiliated with Meta Corporation or facebook/react project or React team, nor is it endorsed or sponsored by them.</small>
51+
</footer>
4952
</main>
5053
);
5154
}

0 commit comments

Comments
 (0)