Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
remove unused div
  • Loading branch information
danhollick committed Jan 31, 2025
commit f61b11fb62d11639100e2520f26e6e518f1c44de
5 changes: 1 addition & 4 deletions src/app/blog/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,7 @@ export default async function DocPage(props: Props) {
<GridContainer className="mt-46">
<FooterSitemap className="*:first:border-l-0 *:last:border-r-0" />
</GridContainer>

<div>
<FooterMeta className="px-4 md:px-6 lg:px-8" />
</div>
<FooterMeta className="px-4 md:px-6 lg:px-8" />
</div>
</div>
</>
Expand Down
5 changes: 1 addition & 4 deletions src/app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,7 @@ export default async function Blog() {
<GridContainer>
<FooterSitemap className="*:first:border-l-0 *:last:border-r-0" />
</GridContainer>

<div>
<FooterMeta className="px-4 md:px-6 lg:px-8" />
</div>
<FooterMeta className="px-4 md:px-6 lg:px-8" />
</div>
);
}
5 changes: 1 addition & 4 deletions src/app/showcase/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ export default async function Showcase() {
<GridContainer>
<FooterSitemap className="*:first:border-l-0 *:last:border-r-0" />
</GridContainer>

<div>
<FooterMeta className="px-4 md:px-6 lg:px-8" />
</div>
<FooterMeta className="px-4 md:px-6 lg:px-8" />
</div>
);
}
Expand Down