Skip to content

Commit 8e51b6d

Browse files
feat: update templates title not yet prefixed with Juno keyword (#91)
1 parent a52ea30 commit 8e51b6d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

templates/angular-example/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {HomeComponent} from './components/home/home.component';
99
templateUrl: './app.component.html'
1010
})
1111
export class AppComponent {
12-
title = 'Juno / Angular Starter';
12+
title = 'Juno / Angular Example';
1313

1414
async ngOnInit() {
1515
await initSatellite({

templates/angular-example/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>AngularStarter</title>
5+
<title>Juno / Angular Example</title>
66
<base href="/" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<link rel="icon" type="image/x-icon" href="favicon.ico" />

templates/angular-starter/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>AngularStarter</title>
5+
<title>Juno / Angular Starter</title>
66
<base href="/" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<link rel="icon" type="image/x-icon" href="favicon.ico" />

templates/nextjs-starter/src/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import './globals.css';
55
const jetBrainsMono = JetBrains_Mono({subsets: ['latin']});
66

77
export const metadata: Metadata = {
8-
title: 'Create Next App',
9-
description: 'Generated by create next app'
8+
title: 'Juno / Next.js Starter',
9+
description: 'Welcome to my app!'
1010
};
1111

1212
export default function RootLayout({

0 commit comments

Comments
 (0)