Browse Source

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

ai/1769214154934
Deploy Bot 2 months ago
parent
commit
a3f5d26d0b
  1. 2
      index.html
  2. 6
      src/assets/main.css
  3. 6
      src/components/HelloWorld.vue

2
index.html

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

6
src/assets/main.css

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

6
src/components/HelloWorld.vue

@ -6,11 +6,9 @@ defineProps<{
<template> <template>
<div class="greetings"> <div class="greetings">
<h1 class="green">{{ msg }}</h1> <h1 class="pink">{{ msg }}</h1>
<h3> <h3>
Youve successfully created a project with Data Driven Marketing
<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?
</h3> </h3>
</div> </div>
</template> </template>

Loading…
Cancel
Save