Skip to content

Commit 62c24a7

Browse files
committed
chore: update demo page links
1 parent a78c876 commit 62c24a7

File tree

1 file changed

+69
-1
lines changed

1 file changed

+69
-1
lines changed

demos/default/pages/index.js

Lines changed: 69 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const Index = ({ shows }) => {
5151
))}
5252
</ul>
5353

54-
<h2>Catch-All Routess</h2>
54+
<h2>Catch-All Routes</h2>
5555

5656
<ul data-testid="list-catch-all">
5757
<li>
@@ -105,6 +105,74 @@ const Index = ({ shows }) => {
105105
</Link>
106106
</li>
107107
</ul>
108+
<h2>Page types</h2>
109+
<ul>
110+
<li>
111+
<Link href="/getServerSideProps/1">
112+
<a>/getServerSideProps/1</a>
113+
</Link>
114+
</li>
115+
<li>
116+
<Link href="/getServerSideProps/static">
117+
<a>/getServerSideProps/static</a>
118+
</Link>
119+
</li>
120+
<li>
121+
<Link href="/getServerSideProps/all/1">
122+
<a>/getServerSideProps/all/1</a>
123+
</Link>
124+
</li>
125+
<li>
126+
<Link href="/getStaticProps/1">
127+
<a>/getStaticProps/1</a>
128+
</Link>
129+
</li>
130+
<li>
131+
<Link href="/getStaticProps/static">
132+
<a>/getStaticProps/static</a>
133+
</Link>
134+
</li>
135+
<li>
136+
<Link href="/getStaticProps/with-revalidate">
137+
<a>/getStaticProps/with-revalidate</a>
138+
</Link>
139+
</li>
140+
<li>
141+
<Link href="/getStaticProps/withFallback/3">
142+
<a>/getStaticProps/withFallback/3 (pre-rendered)</a>
143+
</Link>
144+
</li>
145+
<li>
146+
<Link href="/getStaticProps/withFallback/300">
147+
<a>/getStaticProps/withFallback/300 (SSR)</a>
148+
</Link>
149+
</li>
150+
<li>
151+
<Link href="/getStaticProps/withFallbackBlocking/300">
152+
<a>/getStaticProps/withFallbackBlocking/300 (SSR)</a>
153+
</Link>
154+
</li>
155+
<li>
156+
<Link href="/getStaticProps/withRevalidate/2">
157+
<a>/getStaticProps/withRevalidate/2</a>
158+
</Link>
159+
</li>
160+
<li>
161+
<Link href="/getStaticProps/withRevalidate/withFallback/200">
162+
<a>/getStaticProps/withRevalidate/withFallback/200</a>
163+
</Link>
164+
</li>
165+
<li>
166+
<Link href="/old/image">
167+
<a>Rewrite (should display image)</a>
168+
</Link>
169+
</li>
170+
<li>
171+
<Link href="/middle">
172+
<a>Middleware</a>
173+
</Link>
174+
</li>
175+
</ul>
108176
</div>
109177
)
110178
}

0 commit comments

Comments
 (0)