import React from 'react'; import LiveStream from '@/app/components/LiveStream'; import DonationPanel from '@/app/components/DonationPanel'; import OwlInfo from '@/app/components/OwlInfo'; export default function LivestreamPage({ params }: { params: { id: string } }) { // In a real app, you'd fetch the livestream data based on the ID const streamData = { id: params.id, name: `Livestream ${params.id}`, location: "Florida", }; return (