-
-
-
- Get started by editing{" "}
-
- src/app/page.tsx -
- . -
- - - Save and see your changes instantly. - -
From afc321b4172e8d162043ccfb22878183cc135276 Mon Sep 17 00:00:00 2001
From: Dev Phan
- {about.mission.content} -
+{about.mission.content}
- {about.content.intro} -
+{about.content.intro}
- {about.community.content} -
+{about.community.content}
- {about.contact.content} {about.contact.email}. + {about.contact.content}{' '} + + {about.contact.email} + + .
diff --git a/website/src/app/[locale]/blog/[slug]/page.tsx b/website/src/app/[locale]/blog/[slug]/page.tsx index 2830411..fb76c7b 100644 --- a/website/src/app/[locale]/blog/[slug]/page.tsx +++ b/website/src/app/[locale]/blog/[slug]/page.tsx @@ -11,24 +11,22 @@ import 'highlight.js/styles/github-dark.css'; import CodeSnippet from "@/components/blog/code-snippet"; import { generateDefaultMetadata } from '@/lib/metadata'; -interface BlogPostPageProps { - params: { - locale: Locale; - slug: string; - }; -} +type Params = Promise<{ + locale: Locale; + slug: string; +}>; -export async function generateMetadata({ params }: BlogPostPageProps): Promise
- src/app/page.tsx
-
- .
- Loading...
+