Brand logo

This commit is contained in:
2024-11-01 11:06:10 +01:00
parent 159b4434df
commit 1f9987ba22
5 changed files with 17 additions and 9 deletions

View File

@@ -2,9 +2,9 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HackMyCart</title> <title>EventMaster</title>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>

BIN
software/public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -76,7 +76,7 @@ watch(() => preferencesStore.language, () => {
</v-sheet> </v-sheet>
</v-container> </v-container>
<v-footer color="secondary"> <v-footer color="primary">
<footer-items /> <footer-items />
</v-footer> </v-footer>
</v-main> </v-main>

View File

@@ -1,11 +1,19 @@
<script setup lang="ts"> <script setup lang="ts">
import { useRouter } from 'vue-router';
const router = useRouter()
</script> </script>
<template> <template>
<v-app-bar-title class="pr-5"> <v-card
<!-- todo: Brand logo --> :link="true"
<v-btn variant="plain" to="/" flat>HackMyCart</v-btn> rounded="0"
</v-app-bar-title> elevation="0"
class="mr-5"
to="/"
>
<v-img src="logo.png" width="80" />
</v-card>
<v-divider vertical /> <v-divider vertical />

View File

@@ -17,7 +17,7 @@ const vuetify = createVuetify({
dark: true, dark: true,
colors: { colors: {
primary: colors.blue.darken4, primary: colors.blue.darken4,
secondary: colors.blue.lighten1, secondary: colors.yellow.darken3,
sheet: colors.grey.darken4 sheet: colors.grey.darken4
} }
}, },
@@ -25,7 +25,7 @@ const vuetify = createVuetify({
dark: false, dark: false,
colors: { colors: {
primary: colors.blue.darken4, primary: colors.blue.darken4,
secondary: colors.blue.darken1, secondary: colors.yellow.darken3,
sheet: colors.grey.lighten3 sheet: colors.grey.lighten3
} }
}, },