Skip to content

Commit 6e5ce26

Browse files
committed
fix: dir problems
1 parent 61a1021 commit 6e5ce26

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

app/speak/page.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
11
import { Footer } from '../(home)/components/Footer';
22
import HeroSection from './components/speak';
33

4+
export const metadata = {
5+
title: 'Speak | My Awesome App',
6+
description: 'Share your thoughts with the community using our Speak feature.',
7+
openGraph: {
8+
title: 'Speak | My Awesome App',
9+
description: 'Share your thoughts with the community using our Speak feature.',
10+
url: 'https://yourdomain.com/speak',
11+
siteName: 'My Awesome App',
12+
images: [
13+
{
14+
url: 'https://yourdomain.com/og-image.png',
15+
width: 1200,
16+
height: 630,
17+
alt: 'Speak Page Preview',
18+
},
19+
],
20+
locale: 'en_US',
21+
type: 'website',
22+
},
23+
twitter: {
24+
card: 'summary_large_image',
25+
title: 'Speak | My Awesome App',
26+
description: 'Join the conversation with our new Speak feature.',
27+
images: ['https://yourdomain.com/og-image.png'],
28+
},
29+
};
30+
31+
32+
433
export default function SpeakPage() {
534
return (
635
<main>

0 commit comments

Comments
 (0)