File size: 2,451 Bytes
ac784c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<template>
    <div class="page-header">
        <div class="logos-container">
            <div class="logo-item">
                <img src="../assets/images/companies_images/deepkin_logo.png" alt="DeepKin" class="logo-image" @click="navigateTo('/')"/>
            </div>
        </div>
        <div class="menu-container">
            <span class="menu-item" @click="navigateTo('/live')">Live</span>
            <span class="menu-item" @click="navigateTo('/leadboard')">Leadboard</span>
            <span class="menu-item" @click="navigateTo('/add-asset')">Agent Arena</span>
        </div>
    </div>
</template>

<script>
export default {
    methods: {
        navigateTo(path) {
            this.$router.push(path);
        }
    }
}
</script>
<style scoped>
.page-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 1rem;
}
.menu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-right: 2rem;
}
.menu-item {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f1f33;
}
.menu-item:hover {
    color: #6b7280;
}
.title-container {
    text-align: center;
}


.logos-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
}

.logo-item {
    flex-shrink: 0;
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem;
    transition: transform 0.2s ease;
}

.logo-item:hover {
    transform: translateY(-2px);
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .page-header {
        padding: 0.5rem 0.75rem;
        gap: 0.35rem;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .logos-container {
        gap: 0.75rem;
    }
    
    .logo-item {
        width: 54px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .logos-container {
        gap: 0.5rem;
    }
    
    .logo-item {
        width: 47px;
        height: 17px;
    }
}
</style>