Keep space under the guide logo and align header and body.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
adilallo
2026-08-18 21:36:12 -06:00
co-authored by Cursor
parent 73cb73a5af
commit 63842b31c8
7 changed files with 81 additions and 36 deletions
+7 -1
View File
@@ -7,10 +7,16 @@ import CookiesPage from "../../app/(marketing)/cookies/page";
import messages from "../../messages/en/index";
vi.mock("../../app/components/sections/ContentBanner", () => ({
default: ({ post, variant }) => (
default: ({ post, variant, updatedLabel }) => (
<section data-testid="content-banner" data-variant={variant}>
<h1>{post.frontmatter.title}</h1>
<p>{post.frontmatter.description}</p>
{updatedLabel ? (
<div>
<span>{post.frontmatter.author}</span>
<span>{updatedLabel}</span>
</div>
) : null}
</section>
),
}));