22 lines
705 B
TypeScript
22 lines
705 B
TypeScript
import type { Metadata } from 'next';
|
||
|
||
export const metadata: Metadata = {
|
||
title: 'Join Our Language Exchange Community',
|
||
description: 'Connect with English and Spanish speakers in Asunción. Join our WhatsApp group, follow us on Instagram, and be part of the Spanglish community.',
|
||
alternates: {
|
||
canonical: '/community',
|
||
},
|
||
openGraph: {
|
||
title: 'Join Our Language Exchange Community – Spanglish',
|
||
description: 'Connect with English and Spanish speakers in Asunción. Join our WhatsApp group, follow us on Instagram, and be part of the Spanglish community.',
|
||
},
|
||
};
|
||
|
||
export default function CommunityLayout({
|
||
children,
|
||
}: {
|
||
children: React.ReactNode;
|
||
}) {
|
||
return children;
|
||
}
|