22 lines
956 B
TypeScript
22 lines
956 B
TypeScript
import { cookies, headers } from 'next/headers'
|
||
import { getDictionary, getInitialLocale } from '@/lib/i18n'
|
||
export default async function ShowreelPage() {
|
||
const cookieStore = cookies()
|
||
const hdrs = headers()
|
||
const locale = getInitialLocale(cookieStore, hdrs)
|
||
const dict = await getDictionary(locale)
|
||
return (
|
||
<section className="section">
|
||
<div className="container">
|
||
<h1 className="h1">Showreel</h1>
|
||
<p className="muted">WDR Lokalzeit Düsseldorf, Showreel – Michael Peskov, Promo Video, Zauberkunst – Vielfalt & Stimmung in Clips.</p>
|
||
<div className="card mt-4">
|
||
<div className="ratio-16x9 sparkle">
|
||
<iframe title="WDR Lokalzeit Düsseldorf - Michael Peskov" src="https://www.youtube-nocookie.com/embed/BGAXMeIzu3Q" loading="lazy" width="100%" height="100%" allow="autoplay; encrypted-media; picture-in-picture" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
)
|
||
}
|