// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates // SPDX-License-Identifier: MIT import { motion } from "framer-motion"; import { cn } from "~/lib/utils"; import { Welcome } from "./welcome"; const questions = [ "How many times taller is the Eiffel Tower than the tallest building in the world?", "How many years does an average Tesla battery last compared to a gasoline engine?", "How many liters of water are required to produce 1 kg of beef?", "How many times faster is the speed of light compared to the speed of sound?", ]; export function ConversationStarter({ className, onSend, }: { className?: string; onSend?: (message: string) => void; }) { return (
); }