import SearchBar from "@/components/SearchBar" import Image from "next/image" const newsItems = [ { id: 123, timestamp: Date.now(), title: "Test", description: "Well hello" } ] export default function Home() { return ( <>
) } const Feed = ({ className, variant = "col", icon: Icon, title }: { className?: string variant?: "row" | "col" title: string icon: (props: React.HTMLAttributes) => React.ReactNode | JSX.Element }) => { return (
1h ago

Bitcoin (BTC) Price Prediction: When Will Bitcoin Reach $100,000?

1h ago

Bitcoin (BTC) Price Prediction: When Will Bitcoin Reach $100,000?

1h ago

Bitcoin (BTC) Price Prediction: When Will Bitcoin Reach $100,000?

1h ago

Bitcoin (BTC) Price Prediction: When Will Bitcoin Reach $100,000?

1h ago

Bitcoin (BTC) Price Prediction: When Will Bitcoin Reach $100,000?

) } const PaperIcon = ({ className }: { className?: string }) => { return ( ) } const TopArrowLodashIcon = ({ className }: { className?: string }) => { return ( ) } const TrendUpIcon = ({ className }: { className?: string }) => { return ( ) }