Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve: add h1 header to blog #70

Merged
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
4 changes: 2 additions & 2 deletions src/app/(routes)/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export default async function BlogHomePage({ searchParams }: PageProps) {
<>
<BackgroundBanner />
<main className="relative z-[1] mx-auto flex w-full max-w-4xl flex-col items-center gap-6 px-4 py-10 lg:gap-8 lg:px-0">
<Text variant="heading-2" className="-mb-6 lg:-mb-8">
Across Blog
<Text variant="heading-2" className="-mb-6">
<h1>Across Blog</h1>
</Text>
<Suspense>
<Filter />
Expand Down
Loading