import { notFound } from 'next/navigation'; import { MDXRemote } from 'next-mdx-remote/rsc'; import { Section, Container, Heading, Badge } from '@/components/ui'; interface PageProps { params: { locale: string; slug: string; }; } export default async function StandardPage({ params: { locale, slug } }: PageProps) { const { getPageBySlug } = await import('@/lib/pages'); const pageData = await getPageBySlug(slug, locale); if (!pageData) { notFound(); } return (
{/* Hero Section */}
Information {pageData.frontmatter.title}
{/* Sticky Narrative Sidebar */}

Quick Navigation

Need Help?

Our support team is available for any questions regarding this topic.

Contact Us →
{/* Main Content */}
); }