feat: add icon to homepage

This commit is contained in:
Julien Calixte
2026-02-14 13:51:23 +01:00
parent 36740dd6a4
commit 2bba5c40cc

View File

@@ -1,6 +1,9 @@
<template> <template>
<div class="welcome-world"> <div class="welcome-world">
<h1 class="title is-1">Remanso</h1> <h1 class="title is-1">
<img src="/favicon.png" alt="Remanso icon" />
Remanso
</h1>
<repo-list /> <repo-list />
@@ -90,6 +93,14 @@ const { userInput, repoInput, submit } = useForm()
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
h1 {
img {
width: 64px;
height: 64px;
box-shadow: none;
}
}
.welcome-world { .welcome-world {
padding: 1rem; padding: 1rem;
margin: auto; margin: auto;