/** * @license * SPDX-License-Identifier: Apache-2.0 */ import React, { useState, useEffect, useCallback, useRef } from 'react'; import { AppState } from './types'; import { generateTextImage, generateTextVideo, generateStyleSuggestion } from './services/geminiService'; import { getRandomStyle, fileToBase64, TYPOGRAPHY_SUGGESTIONS, createGifFromVideo } from './utils'; import { Loader2, Paintbrush, Clapperboard, Play, ExternalLink, Type, Sparkles, Image as ImageIcon, X, Upload, Download, FileType, Wand2, Volume2, VolumeX, ChevronLeft, ChevronRight, ArrowLeft, Video as VideoIcon, Key, Info, ShieldCheck, Box, Code, Copy, Check } from 'lucide-react'; import ThreeDLogo from './components/ThreeDLogo'; interface Video { id: string; title: string; videoUrl: string; description: string; } const staticFilesUrl = 'https://www.gstatic.com/aistudio/starter-apps/type-motion/'; export const MOCK_VIDEOS: Video[] = [ { id: '1', title: "Cloud Formations", videoUrl: staticFilesUrl + 'clouds_v2.mp4', description: "Text formed by fluffy white clouds in a deep blue summer sky.", }, { id: '2', title: "Elemental Fire", videoUrl: staticFilesUrl + 'fire_v2.mp4', description: "Flames erupt into text in an arid dry environment.", }, { id: '3', title: "Mystic Smoke", videoUrl: staticFilesUrl + 'smoke_v2.mp4', description: "A sudden wave of smoke swirling to reveal the text.", }, { id: '4', title: "Water Blast", videoUrl: staticFilesUrl + 'water_v2.mp4', description: "A wall of water punching through text with power.", }, ]; const ApiKeyDialog: React.FC<{ isOpen: boolean; onClose: () => void; onSelect: () => void }> = ({ isOpen, onClose, onSelect }) => { if (!isOpen) return null; return (

Paid API Key Required

To use cinematic video generation models (like Veo), you must select an API key from a Google Cloud project with billing enabled. Free-tier keys do not support these high-end features.

• Make sure your project is linked to a valid billing account.

• Check the pricing documentation for more details.

); }; const HeroCarousel: React.FC<{ forceMute: boolean }> = ({ forceMute }) => { const [currentIndex, setCurrentIndex] = useState(0); const [isMuted, setIsMuted] = useState(true); const video = MOCK_VIDEOS[currentIndex]; useEffect(() => { if (forceMute) { setIsMuted(true); } }, [forceMute]); const handleNext = useCallback(() => { setCurrentIndex((prev) => (prev + 1) % MOCK_VIDEOS.length); }, []); const handlePrev = useCallback(() => { setCurrentIndex((prev) => (prev - 1 + MOCK_VIDEOS.length) % MOCK_VIDEOS.length); }, []); return (


📈 Latest U.S. Economic Analysis

Why U.S. Growth Could Pick Up in Early 2026 — But Risks Remain

📰 What’s Happening

A new Reuters report shows that the U.S. economy is positioned for stronger growth in 2026, driven partly by fiscal policies implemented under President Donald Trump, especially tax cuts and reduced tariff uncertainty. This comes after a volatile 2025, with growth rebounding in the third quarter despite earlier slowdowns and a government shutdown. 

📊 Key Economic Drivers

  • Tax Cuts for Individuals and Businesses:
    Recent tax reforms under the Trump administration are expected to leave more disposable income in the hands of consumers and boost corporate investments. These include larger tax refunds, lower withholdings, and enhanced write-offs for business expenses — all of which can stimulate spending and investment. 

  • AI Sector Momentum:
    Investment in artificial intelligence (AI), led by major tech firms like Amazon and Alphabet, continues to fuel economic growth. This fast-expanding sector boosts productivity and capital spending, raising GDP prospects. 

  • Interest Rate Reductions:
    A late-2025 set of interest rate cuts by the Federal Reserve has eased financial conditions, creating a more supportive environment for consumer credit and business expansion. 

⚠️ Persistent Risks

Despite the positive momentum, economists warn about several challenges:

  • Inflation is still elevated, cutting into real purchasing power.

  • The labor market shows signs of weakening, with some sectors slowing down.

  • The Federal Reserve leadership could shift in 2026, which introduces uncertainty about future monetary policy. 

🧠 What It Means

Short-Term Outlook:
Analysts believe that fiscal stimulus — notably from the tax cuts — could add 0.5% or more to GDP growth in early 2026, helping sustain the recovery. 

Long-Term Concerns:
However, deeper structural issues like inflation persistence and job market softness may limit the benefits unless wage growth and consumption strengthen. Continued reliance on short-term stimulus could also increase vulnerabilities if broader confidence erodes.


🧩 Summary

In essence, the U.S. economy is not in a recession and shows growth potential, but the recovery path is uneven. Trump’s tax policies and supportive fiscal actions are boosting short-term activity, yet risks such as inflation, labor market softness, and monetary policy shifts could temper long-lasting gains.

Post a Comment

أحدث أقدم