Skip to content

Commit f6095ba

Browse files
committed
ref: fix linting issues
1 parent 207df2f commit f6095ba

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

app/routes/_index.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ export default function Index() {
1313
return (
1414
<>
1515
<HeroSection />
16+
17+
<footer>
18+
<div className="footer footer-center p-10 bg-base-200 text-base-content">
19+
<div>
20+
<p>{title}</p>
21+
<p>{description}</p>
22+
<p>© {new Date().getFullYear()} All rights reserved</p>
23+
</div>
24+
</div>
25+
</footer>
1626
</>
1727
);
1828
}

packages/components/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function NavBar() {
6464
<div className="navbar grid w-full gap-4 bg-base-100 px-20 py-4 text-center sm:px-30 md:hidden">
6565
<nav className="mx-auto flex gap-4">{communityLinks}</nav>
6666

67-
<div className="h-[1px] w-100 bg-gray-200" />
67+
<div className="h-[1px] bg-gray-200" />
6868

6969
<div className="flex justify-center gap-4 text-md">
7070
{actionButtons}

0 commit comments

Comments
 (0)