Skip to content

Commit

Permalink
chore: correct brandname (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
geisterfurz007 authored Mar 9, 2024
1 parent c30c952 commit 252266b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/e2e/tests/example.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ test('has title', async ({page}) => {
await page.goto('/');

// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/YesTheory Family/);
await expect(page).toHaveTitle(/Yes Theory Family/);

await page.getByRole('button', {name: 'Accept'}).click();
await expect(page.getByText('Dive in')).toBeVisible();
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/app/(home)/components/intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const Intro: FC = () => (
<div>
<Heading
frontText='Welcome to'
blueText=' YesTheory '
blueText=' Yes Theory '
backText='family'
size='h2'
className='text-center'
Expand Down
4 changes: 2 additions & 2 deletions packages/web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const roboto = Roboto({
export const metadata: Metadata = {
metadataBase: new URL(process.env.FRONTEND_URL),
title: {
absolute: 'YesTheory Family',
template: '%s - YesTheory Family',
absolute: 'Yes Theory Family',
template: '%s - Yes Theory Family',
},
icons: {
icon: [
Expand Down

0 comments on commit 252266b

Please sign in to comment.