import React from 'react'; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; interface OwlInfoProps { id: string; } const OwlInfo: React.FC = ({ id }) => { return ( About This Livestream

This livestream (ID: {id}) showcases the natural habitat and behavior of wildlife in Florida. By observing these animals in their natural environment, we can learn more about their needs and how to protect them.

); }; export default OwlInfo;