Add some favicons

This commit is contained in:
2023-10-29 20:32:34 -04:00
parent a2c4d096c4
commit 027609d8fa
16 changed files with 17 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 859 B

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
src/assets/OYS-Burgee.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
src/assets/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

BIN
src/assets/oysqn_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -1,5 +1,8 @@
<template> <template>
<q-page class="row items-center justify-evenly"> <q-page class="row items-center justify-evenly">
<img alt="OYS Logo" src="~assets/oysqn_logo.png" />
<q-input v-model="name" label="Name" color="darkblue"></q-input>
<q-btn label="submit" icon="send"></q-btn>
<example-component <example-component
title="Example component" title="Example component"
active active
@@ -17,33 +20,38 @@ import { defineComponent, ref } from 'vue';
export default defineComponent({ export default defineComponent({
name: 'IndexPage', name: 'IndexPage',
components: { ExampleComponent }, components: { ExampleComponent },
setup () { setup() {
const todos = ref<Todo[]>([ const todos = ref<Todo[]>([
{ {
id: 1, id: 1,
content: 'ct1' content: 'ct1',
}, },
{ {
id: 2, id: 2,
content: 'ct2' content: 'ct2',
}, },
{ {
id: 3, id: 3,
content: 'ct3' content: 'ct3',
}, },
{ {
id: 4, id: 4,
content: 'ct4' content: 'ct4',
}, },
{ {
id: 5, id: 5,
content: 'ct5' content: 'ct5',
} },
]); ]);
const meta = ref<Meta>({ const meta = ref<Meta>({
totalCount: 1200 totalCount: 1200,
}); });
return { todos, meta }; return { todos, meta };
} },
data() {
return {
name: '',
};
},
}); });
</script> </script>