Skip to content

Commit

Permalink
chore(create-next-app): update empty templates (#65620)
Browse files Browse the repository at this point in the history
## Why?

- Remove `favicon.ico` from empty templates
- Update Index pages in `default-empty` templates to be the same as the
`app-empty` templates
- x-ref: #65532
  • Loading branch information
samcx committed May 10, 2024
1 parent 3c06a50 commit e4cfd3b
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 9 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Expand Up @@ -7,10 +7,9 @@ export default function Home() {
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
<div>Hello World!</div>
<div>Hello world!</div>
</main>
</>
);
Expand Down
Binary file not shown.
Expand Up @@ -7,7 +7,6 @@ export default function Home() {
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
<div>Hello world!</div>
Expand Down
Binary file not shown.
@@ -1,7 +1,16 @@
import Head from "next/head";

export default function Home() {
return (
<main>
<div>Hello world!</div>
</main>
<>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</Head>
<main>
<div>Hello world!</div>
</main>
</>
);
}
Binary file not shown.
@@ -1,7 +1,16 @@
import Head from "next/head";

export default function Home() {
return (
<main>
<div>Hello world!</div>
</main>
<>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</Head>
<main>
<div>Hello world!</div>
</main>
</>
);
}
Binary file not shown.

0 comments on commit e4cfd3b

Please sign in to comment.