import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { motion } from "framer-motion"; import { Newspaper, Globe, TrendingUp, Tv } from "lucide-react"; export default function USANewsSite() { const categories = [ { title: "Breaking News", icon: , desc: "Real-time updates from across the United States and the world.", }, { title: "Politics", icon: , desc: "Latest political developments, policies, and government decisions.", }, { title: "Business & Economy", icon: , desc: "Market trends, finance news, and economic insights.", }, { title: "Technology & Media", icon: , desc: "Tech innovations, AI, startups, and digital media updates.", }, ]; return (
{/* Header */}

USA Daily News

{/* Hero */}

Trusted News Across America

Breaking headlines, deep analysis, and reliable journalism — all in one place.

Featured News Image
{/* Categories */}
{categories.map((item, i) => (
{item.icon}

{item.title}

{item.desc}

))}
{/* Latest Articles Preview */}

Latest Headlines

{[1, 2, 3].map((n) => (

Sample Headline for Breaking News Story {n}

Short preview of the news article to attract readers and improve engagement.

))}
{/* Footer */}
); }