Add core UI components and layout for media platform

Initializes the client-side application with fundamental UI components, including navigation, cards for articles and auctions, and various elements for user interaction and display.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea
Replit-Commit-Checkpoint-Type: intermediate_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/bVdKIaU
This commit is contained in:
kimjaehyeon0101
2025-09-29 14:35:50 +00:00
parent 4d252ca7a6
commit 2cbad88faa
89 changed files with 17584 additions and 0 deletions

View File

@ -0,0 +1,65 @@
// This file contains the initial media outlet data as specified by the user
export const peopleList = [
"Ala Shaabana", "Alex Karp", "Arthur Hayes", "Donald Trump Jr", "Eric Trump",
"J.D. Vance", "Jacob Robert Steeves", "Jared Kushner", "Jensen Huang",
"Jerome Powell", "Joseph Jacks", "Larry Ellison", "Lily Liu", "Marco Rubio",
"Michael J. Saylor", "Mike Novogratz", "Palmer Luckey", "Robert Myers",
"Sam Altman", "Satya Nadella", "Scott Bessent", "Seungyoon Lee", "Simon Kim", "Yat Siu"
];
export const topicsList = [
"Alt Coin", "Bollywood", "CBDC", "CFTC (Commodity Futures Trading Commission)",
"CantoPop", "Crypto", "Custody Regulation", "DAT (Digital Asset Treasury)",
"DEX", "DeFi", "Decentralized AI", "FOMC", "Federal Reserve", "J-Star",
"K-Star", "NFT Markets", "RWA", "SEC (Securities and Exchange Commission)",
"Sovereign Wealth Funds", "Stable Coin"
];
export const companiesList = [
"Anduril", "Ava Labs", "Bittensor", "BlackRock", "Boston Dynamics", "CME Group",
"Chainlink Labs", "Circle", "Epic Games", "Galaxy Digital", "Hashed",
"Hyperliquid", "MicroStrategy", "Oblong", "OpenSea", "Palantir", "PancakeSwap",
"Polygon", "Saudi Aramco", "Solana Foundation", "Story", "TAOX", "TRON",
"TSMC", "Uniswap", "World Liberty Financial", "YUMA", "xTAO"
];
export const sampleArticles = [
{
title: "Palantir CEO Alex Karp says top tech talent is about to get 'crazy valuable'",
excerpt: "Alex Karp, CEO of Palantir, said on \"TBPN\" that skilled tech workers will be increasingly valuable. With intense competition for AI talent, top workers are demanding higher pay.",
content: `Alex Karp, CEO of Palantir, said on "TBPN" that skilled tech workers will be increasingly valuable. With intense competition for AI talent, top workers are demanding higher pay. Even as Palantir's revenue soared last quarter, Karp says it may adopt leaner teams.
In an exclusive interview, Palantir's CEO discussed the evolving landscape of technical talent acquisition and the strategic implications for technology companies. The data analytics giant has been at the forefront of AI implementation across government and enterprise sectors.
"The competition for top-tier AI engineers and data scientists has reached unprecedented levels," Karp explained. "We're seeing salary demands that would have been unthinkable just two years ago. This trend is reshaping how we think about team composition and productivity."
Despite posting strong quarterly results with revenue growth exceeding expectations, Palantir is adapting its hiring strategy to focus on highly skilled individuals rather than expanding team sizes. This approach reflects broader industry trends toward efficiency and specialization.`,
imageUrl: "https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&w=800&h=400&fit=crop",
tags: ["Business", "Strategy", "Economy"]
}
];
export const samplePredictionMarkets = [
{
title: "Will Palantir stock reach $50 by Q2 2025?",
yesPrice: "67",
noPrice: "33",
volume: "2400000",
endDate: "2025-03-31"
},
{
title: "Will AI engineer salaries exceed $500k average in 2025?",
yesPrice: "78",
noPrice: "22",
volume: "890000",
endDate: "2025-12-31"
},
{
title: "Will Palantir acquire an AI startup in 2025?",
yesPrice: "45",
noPrice: "55",
volume: "1200000",
endDate: "2025-12-31"
}
];