Changed website title to 'Word of Mouth', updated HelloWorld component to display 'Data Driven Marketing', and changed the color scheme from green to pink #1

Closed
diegovester wants to merge 1 commits from ai/1769214154934 into main
  1. 4
      index.html
  2. 8
      src/assets/main.css
  3. 8
      src/components/HelloWorld.vue

4
index.html

@ -4,10 +4,10 @@ @@ -4,10 +4,10 @@
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
<title>Word of Mouth</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
</html>

8
src/assets/main.css

@ -8,16 +8,16 @@ @@ -8,16 +8,16 @@
}
a,
.green {
.pink {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
color: hsla(320, 100%, 50%, 1);
transition: 0.4s;
padding: 3px;
}
@media (hover: hover) {
a:hover {
background-color: hsla(160, 100%, 37%, 0.2);
background-color: hsla(320, 100%, 50%, 0.2);
}
}
@ -32,4 +32,4 @@ a, @@ -32,4 +32,4 @@ a,
grid-template-columns: 1fr 1fr;
padding: 0 2rem;
}
}
}

8
src/components/HelloWorld.vue

@ -6,11 +6,9 @@ defineProps<{ @@ -6,11 +6,9 @@ defineProps<{
<template>
<div class="greetings">
<h1 class="green">{{ msg }}</h1>
<h1 class="pink">{{ msg }}</h1>
<h3>
Youve successfully created a project with
<a href="https://vite.dev/" target="_blank" rel="noopener">Vite</a> +
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>. What's next?
Data Driven Marketing
</h3>
</div>
</template>
@ -38,4 +36,4 @@ h3 { @@ -38,4 +36,4 @@ h3 {
text-align: left;
}
}
</style>
</style>
Loading…
Cancel
Save