Skip to content

Commit 7790eb3

Browse files
committed
Remove stylesheets and images.
1 parent 824f6b8 commit 7790eb3

File tree

8 files changed

+12
-380
lines changed

8 files changed

+12
-380
lines changed

packages/e2e-tests/test-applications/create-next-app/pages/_app.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import '../styles/globals.css';
21
import type { AppProps } from 'next/app';
32

43
export default function App({ Component, pageProps }: AppProps) {

packages/e2e-tests/test-applications/create-next-app/pages/index.tsx

Lines changed: 12 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Head from 'next/head';
22
import Image from 'next/image';
33
import { Inter } from '@next/font/google';
4-
import styles from '../styles/Home.module.css';
54

65
const inter = Inter({ subsets: ['latin'] });
76

@@ -12,13 +11,12 @@ export default function Home() {
1211
<title>Create Next App</title>
1312
<meta name="description" content="Generated by create next app" />
1413
<meta name="viewport" content="width=device-width, initial-scale=1" />
15-
<link rel="icon" href="/favicon.ico" />
1614
</Head>
17-
<main className={styles.main}>
18-
<div className={styles.description}>
15+
<main>
16+
<div>
1917
<p>
2018
Get started by editing&nbsp;
21-
<code className={styles.code}>pages/index.tsx</code>
19+
<code>pages/index.tsx</code>
2220
</p>
2321
<div>
2422
<a
@@ -27,72 +25,53 @@ export default function Home() {
2725
rel="noopener noreferrer"
2826
>
2927
By{' '}
30-
<Image
31-
src="/vercel.svg"
32-
alt="Vercel Logo"
33-
className={styles.vercelLogo}
34-
width={100}
35-
height={24}
36-
priority
37-
/>
3828
</a>
3929
</div>
4030
</div>
4131

42-
<div className={styles.center}>
43-
<Image className={styles.logo} src="/next.svg" alt="Next.js Logo" width={180} height={37} priority />
44-
<div className={styles.thirteen}>
45-
<Image src="/thirteen.svg" alt="13" width={40} height={31} priority />
46-
</div>
47-
</div>
48-
49-
<div className={styles.grid}>
32+
<div>
5033
<a
5134
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
52-
className={styles.card}
5335
target="_blank"
5436
rel="noopener noreferrer"
5537
>
56-
<h2 className={inter.className}>
38+
<h2>
5739
Docs <span>-&gt;</span>
5840
</h2>
59-
<p className={inter.className}>Find in-depth information about Next.js features and&nbsp;API.</p>
41+
<p>Find in-depth information about Next.js features and&nbsp;API.</p>
6042
</a>
6143

6244
<a
6345
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
64-
className={styles.card}
6546
target="_blank"
6647
rel="noopener noreferrer"
6748
>
68-
<h2 className={inter.className}>
49+
<h2>
6950
Learn <span>-&gt;</span>
7051
</h2>
71-
<p className={inter.className}>Learn about Next.js in an interactive course with&nbsp;quizzes!</p>
52+
<p>Learn about Next.js in an interactive course with&nbsp;quizzes!</p>
7253
</a>
7354

7455
<a
7556
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
76-
className={styles.card}
7757
target="_blank"
7858
rel="noopener noreferrer"
7959
>
80-
<h2 className={inter.className}>
60+
<h2>
8161
Templates <span>-&gt;</span>
8262
</h2>
83-
<p className={inter.className}>Discover and deploy boilerplate example Next.js&nbsp;projects.</p>
63+
<p>Discover and deploy boilerplate example Next.js&nbsp;projects.</p>
8464
</a>
8565

8666
<a
8767
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
88-
className={styles.card}
8968
target="_blank"
9069
rel="noopener noreferrer"
9170
>
92-
<h2 className={inter.className}>
71+
<h2>
9372
Deploy <span>-&gt;</span>
9473
</h2>
95-
<p className={inter.className}>Instantly deploy your Next.js site to a shareable URL with&nbsp;Vercel.</p>
74+
<p>Instantly deploy your Next.js site to a shareable URL with&nbsp;Vercel.</p>
9675
</a>
9776
</div>
9877
</main>
Binary file not shown.

packages/e2e-tests/test-applications/create-next-app/public/next.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/e2e-tests/test-applications/create-next-app/public/thirteen.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/e2e-tests/test-applications/create-next-app/public/vercel.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/e2e-tests/test-applications/create-next-app/styles/Home.module.css

Lines changed: 0 additions & 266 deletions
This file was deleted.

0 commit comments

Comments
 (0)