import { useEffect } from 'react'; import AppBar from './components/AppBar'; import TechUpdateCard from './components/TechUpdateCard'; import Footer from './components/Footer'; import CookieConsentBanner from './components/CookieConsentBanner'; import AdSection from './components/AdSection'; import PageReloadManager from './components/PageReloadManager'; import YouTubeReviewsSection from './components/YouTubeReviewsSection'; import TechNewsSection from './components/TechNewsSection'; import HeroSection from './components/HeroSection'; import SecurityProvider from './components/SecurityProvider'; import { softwareUpdates, hardwareUpdates } from './data/mockData'; function App() { useEffect(() => { // Initialize analytics or tracking if needed console.log('Tech News Hub initialized'); }, []); return (
{/* Hero Section */} {/* Latest Tech News Section */}

Latest Tech News

{/* Software Updates & OS News */}

Software Updates & OS News

{softwareUpdates.map((update) => ( ))}
{/* Hardware Leaks & Device News */}

Hardware Leaks & Device News

{hardwareUpdates.map((update) => ( ))}
{/* In-Depth Reviews & Troubleshooting */}

In-Depth Reviews & Troubleshooting

{/* Featured Partners */} {/* Partner Spotlight */}

Partner Spotlight

Discover cutting-edge technology products and exclusive deals from our trusted partners

MacBook Pro M4
Apple Store

MacBook Pro M4 - Up to $200 Off

Get exclusive tech leaks and breaking news before anyone else. Our insider network delivers the latest updates directly to you.

Samsung Galaxy S25
Samsung

Galaxy S25 Ultra Pre-Order

Experience the future of mobile technology with AI-powered features and revolutionary camera system.

NVIDIA RTX 5090
NVIDIA

RTX 5090 - Ultimate Gaming

Unleash next-generation gaming performance with ray tracing and DLSS 4 technology.

); } export default App;