church-website/src/compositions/Footer/Footer.tsx
2026-04-17 09:09:44 +02:00

12 lines
324 B
TypeScript

import { fetchPrayers } from '@/fetch/prayers'
import { fetchFooter } from '@/fetch/footer'
import { FooterView } from './FooterView'
export const Footer = async () => {
const [prayers, footer] = await Promise.all([
fetchPrayers(),
fetchFooter(),
])
return <FooterView prayers={prayers} footer={footer} />
}