- Add TokenCard and CexAnalysisCard components for displaying token data - Implement real-time Redis event streaming for token updates - Add environment-based configuration system for dev/prod Redis servers - Create comprehensive hunting ground dashboard with card management - Add individual and bulk card removal functionality - Implement browser integration for token details viewing - Add timestamp utilities and proper type handling for Redis events - Create production-ready configuration with 154.38.185.112 Redis server - Add comprehensive documentation in README.md and CONTRIBUTORS.md - Restructure project architecture with proper Electron-Vue integration BREAKING CHANGE: Redis configuration now uses environment-based settings
26 lines
531 B
Vue
26 lines
531 B
Vue
/// <reference types="../types/electron" />
|
|
|
|
<template>
|
|
<div>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
/**
|
|
* Main App Component
|
|
*
|
|
* This is the root component that handles global layout rendering.
|
|
* It provides the foundation for the entire Ziya application.
|
|
*
|
|
* The component is intentionally minimal to avoid SSR issues with
|
|
* Pinia stores and to ensure proper initialization flow.
|
|
*/
|
|
|
|
// Component metadata
|
|
defineOptions({
|
|
name: 'ZiyaApp',
|
|
});
|
|
</script>
|