import { GweetDetails } from "@/components/gweets"; import { GweetHeader } from "@/components/layout"; export default async function GweetDetailPage() { return ( <div> <GweetHeader /> <GweetDetails /> </div> ); };