michaelpeskov/app/(routes)/showreel/page.tsx

22 lines
956 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
)
}