Skip to content

Commit 55abbcd

Browse files
Begin branding changes
1 parent 14fb3fa commit 55abbcd

File tree

7 files changed

+20
-14
lines changed

7 files changed

+20
-14
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "VueJS Starter Kit",
2+
"name": "Optimizely VueJS Starter Kit",
33

44
"build": {
55
"dockerfile": "Dockerfile",

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<link rel="icon" href="/favicon.ico">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Vite App</title>
7+
<title>Optimizely Vue.js Quick Start</title>
88
</head>
99
<body>
1010
<div id="app"></div>

public/favicon.ico

10.9 KB
Binary file not shown.

src/App.vue

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,10 @@ import HelloWorld from './components/HelloWorld.vue'
55

66
<template>
77
<header>
8-
<img alt="Vue logo" class="logo" src="@/assets/logo.svg" width="125" height="125" />
8+
<img alt="Optimizely logo" class="logo" src="@/assets/logo.svg" width="125" height="125" />
99

1010
<div class="wrapper">
11-
<HelloWorld msg="You did it!" />
12-
13-
<nav>
14-
<RouterLink to="/">Home</RouterLink>
15-
<RouterLink to="/about">About</RouterLink>
16-
</nav>
11+
<HelloWorld msg="Welcome" />
1712
</div>
1813
</header>
1914

src/assets/logo.svg

Lines changed: 14 additions & 1 deletion
Loading

src/assets/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
a,
1212
.green {
1313
text-decoration: none;
14-
color: hsla(160, 100%, 37%, 1);
14+
color: #3BE081;
1515
transition: 0.4s;
1616
}
1717

src/components/HelloWorld.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ defineProps<{
88
<div class="greetings">
99
<h1 class="green">{{ msg }}</h1>
1010
<h3>
11-
You’ve successfully created a project with
12-
<a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a> +
13-
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>. What's next?
11+
Let's get going with the quick start.
1412
</h3>
1513
</div>
1614
</template>

0 commit comments

Comments
 (0)