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

40 lines
1.8 KiB
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 TestimonialsPage() {
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">Stimmen</h1>
<div className="grid grid--2 mt-4">
<blockquote className="testimonial">
<p className="testimonial__quote"><strong>Ein absolut perfekt gelungenes Zauber Event jeder unserer Gäste war fasziniert professionell absolut weiterzuempfehlen!</strong></p>
<div className="testimonial__meta">
<div className="avatar" aria-hidden="true" />
<div>
<div className="muted">Familienfeier, Februar 2023 Solingen</div>
<div className="badge">5 von 5 Sternen 100% Weiterempfehlung</div>
</div>
</div>
</blockquote>
<blockquote className="testimonial">
<p className="testimonial__quote"><strong>Seine Shows sind genial! Seine Energie und Leidenschaft unvergleichlich. Ich würde jederzeit wiederkommen!</strong></p>
<div className="testimonial__meta">
<div className="avatar" aria-hidden="true" />
<div>
<div className="muted">Bewertung bei ProvenExpert (11/2024)</div>
<div className="badge">5 von 5 Sternen</div>
</div>
</div>
</blockquote>
</div>
<div className="hr" />
<p className="muted">Durchschnitt: 5 von 5 Sternen 100% Weiterempfehlung</p>
</div>
</section>
)
}