Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eb5dd3a

Browse files
committed
feat: make seoTitle the default seo blog description
1 parent 1d61eac commit eb5dd3a

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

public/blogs/code-silos.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Code Silos
33
seoTitle: Code silos are one of the main reasons over why your projects fails
4-
summary: Afraid of losing that one programmer ?
4+
summary: What if someone quits mid project ?
55
isReleased: true
66
isSequel: false
77
lastModDate: 2022-12-15T09:15:00-0401

src/app/(pages)/blog/[post]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export async function generateMetadata({
4545
locale: 'en_US',
4646
publishedTime: postAttrs.firstModDate,
4747
title,
48-
description,
48+
description: seoDescription,
4949
type: 'article',
5050
url,
5151
images: [

src/app/components/protos/hero-section.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,10 @@ import { Button } from '../ui/button';
233233

234234
/* eslint-disable */
235235

236+
/* eslint-disable */
237+
238+
/* eslint-disable */
239+
236240
function TypingAnimation() {
237241
const el = useRef(null);
238242

src/app/components/reusables/code/code-block.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,16 @@ import CopyButton from './copy-code';
506506
/* eslint-disable */
507507
// @ts-nocheck
508508

509+
// react-syntax-highlighter has no types
510+
511+
/* eslint-disable */
512+
// @ts-nocheck
513+
514+
// react-syntax-highlighter has no types
515+
516+
/* eslint-disable */
517+
// @ts-nocheck
518+
509519
// react-syntax-highlighter has no types
510520
/* eslint-disable */
511521
// @ts-nocheck

0 commit comments

Comments
 (0)