Skip to content

Commit adc404b

Browse files
archiewoodThe-Best-Codes
authored andcommitted
feat (examples): style svelte demo (vercel#5420)
1 parent 33842d0 commit adc404b

File tree

1 file changed

+29
-3
lines changed

1 file changed

+29
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1-
<a href="/chat">Chat</a>
2-
<a href="/completion">Completion</a>
3-
<a href="/structured-object">Structured Object</a>
1+
<main>
2+
<header class="text-center my-8">
3+
<h1 class="text-4xl font-bold mb-4">OpenAI + SvelteKit Demo</h1>
4+
<p class="text-gray-600">
5+
Select a demo to explore different OpenAI integration examples:
6+
</p>
7+
</header>
8+
9+
<nav class="flex flex-col items-center gap-4 m-4">
10+
<a
11+
href="/chat"
12+
class="w-full max-w-sm py-3 px-6 bg-gray-100 hover:bg-gray-200 rounded-lg text-center transition-colors duration-200"
13+
>
14+
Chat Demo
15+
</a>
16+
<a
17+
href="/completion"
18+
class="w-full max-w-sm py-3 px-6 bg-gray-100 hover:bg-gray-200 rounded-lg text-center transition-colors duration-200"
19+
>
20+
Completion Demo
21+
</a>
22+
<a
23+
href="/structured-object"
24+
class="w-full max-w-sm py-3 px-6 bg-gray-100 hover:bg-gray-200 rounded-lg text-center transition-colors duration-200"
25+
>
26+
Structured Object Demo
27+
</a>
28+
</nav>
29+
</main>

0 commit comments

Comments
 (0)