Compare commits
No commits in common. "11dfb0fa494888e8e20d24f8eba2da418ac5cb47" and "d3dc67f137805a667ef61f5ffae0d1293b925576" have entirely different histories.
11dfb0fa49
...
d3dc67f137
|
@ -9,40 +9,6 @@ export function generateStaticParams() {
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add dynamic metadata for each update
|
|
||||||
export async function generateMetadata({ params }) {
|
|
||||||
const post = updates.find((p) => p.id.toString() === params.id);
|
|
||||||
if (!post) {
|
|
||||||
return {
|
|
||||||
title: 'Update Not Found | LiteNet',
|
|
||||||
description: 'This update could not be found.',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
title: `${post.title} | LiteNet Updates`,
|
|
||||||
description: post.summary,
|
|
||||||
openGraph: {
|
|
||||||
title: `${post.title} | LiteNet Updates`,
|
|
||||||
description: post.summary,
|
|
||||||
type: 'article',
|
|
||||||
publishedTime: post.timestamp,
|
|
||||||
authors: [post.author?.name],
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: post.author?.avatar || 'https://litenet.tel/litenet-logo.png',
|
|
||||||
alt: post.author?.name || 'LiteNet',
|
|
||||||
}
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: 'summary_large_image',
|
|
||||||
title: `${post.title} | LiteNet Updates`,
|
|
||||||
description: post.summary,
|
|
||||||
images: [post.author?.avatar || 'https://litenet.tel/litenet-logo.png'],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function BlogPost({ params }) {
|
export default function BlogPost({ params }) {
|
||||||
const post = updates.find((p) => p.id.toString() === params.id)
|
const post = updates.find((p) => p.id.toString() === params.id)
|
||||||
|
|
||||||
|
|
|
@ -60,10 +60,7 @@ export function PrivacyPolicyModal() {
|
||||||
|
|
||||||
<h2 className="text-lg font-semibold mb-2">3. Call Recording</h2>
|
<h2 className="text-lg font-semibold mb-2">3. Call Recording</h2>
|
||||||
<p className="mb-4">
|
<p className="mb-4">
|
||||||
Inbound and outbound calls (not between extensions) on LiteNet are recorded and may be listened to by the staff team if either party requests it or if a dire situation presents itself (such as abuse, harassment, or legal compliance). Recordings are stored securely and are only accessed when necessary for moderation, safety, or legal reasons.
|
Call recording does not happen on the LiteNet Phone system itself. Individuals may record their calls via their own methods provided it's legal in their jurisdiction. If you record your calls we ask you announce it before a conversation.
|
||||||
</p>
|
|
||||||
<p className="mb-4">
|
|
||||||
Individuals may record their calls via their own methods provided it's legal in their jurisdiction. If you record your calls we ask you announce it before a conversation.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2 className="text-lg font-semibold mb-2">4. Voicemail Privacy</h2>
|
<h2 className="text-lg font-semibold mb-2">4. Voicemail Privacy</h2>
|
||||||
|
|
Loading…
Reference in a new issue