Skip to content

Commit

Permalink
fix: uppercase title
Browse files Browse the repository at this point in the history
  • Loading branch information
luizchaves committed Oct 20, 2024
1 parent d669bc1 commit 79c61b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/MarkDownLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const githubEditUrl = `${GITHUB_EDIT_URL}/src${file.split('/src').pop()}`;
<link rel="icon" type="image/svg+xml" href="/lp2/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="generator" content={Astro.generator} />
<title>{frontmatter?.title ?? 'lp2'}</title>
<title>{frontmatter?.title ?? 'LP2'}</title>
</head>
<body class="bg-gray-100 dark:bg-slate-800 dark:text-white">
<NavBar />
Expand Down

0 comments on commit 79c61b7

Please sign in to comment.