From e203ec98ca210616115028dc25f43524ddd98ea9 Mon Sep 17 00:00:00 2001 From: Deploy Bot Date: Sat, 24 Jan 2026 00:24:50 +0000 Subject: [PATCH] Changed website title to 'Word of Mouth', updated HelloWorld component message and content, changed color scheme from green to pink, removed the logo, and updated the e2e test to match the new title --- e2e/vue.spec.ts | 4 ++-- index.html | 4 ++-- src/App.vue | 15 ++------------- src/assets/main.css | 8 ++++---- src/components/HelloWorld.vue | 8 +++----- 5 files changed, 13 insertions(+), 26 deletions(-) diff --git a/e2e/vue.spec.ts b/e2e/vue.spec.ts index 87c0605..3514a87 100644 --- a/e2e/vue.spec.ts +++ b/e2e/vue.spec.ts @@ -4,5 +4,5 @@ import { test, expect } from '@playwright/test' // https://playwright.dev/docs/intro test('visits the app root url', async ({ page }) => { await page.goto('/') - await expect(page.locator('h1')).toHaveText('You did it!') -}) + await expect(page.locator('h1')).toHaveText('Word of Mouth') +}) \ No newline at end of file diff --git a/index.html b/index.html index 9e5fc8f..14aa61a 100644 --- a/index.html +++ b/index.html @@ -4,10 +4,10 @@ - Vite App + Word of Mouth
- + \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 7905b05..152d884 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,10 +5,8 @@ import HelloWorld from './components/HelloWorld.vue'