Skip to content

Commit e6791cf

Browse files
committed
Add demo video
1 parent 7a1717d commit e6791cf

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

app/pages/index.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,18 @@ export default function Home({
129129
</div>
130130
</div>
131131
</div>
132+
<div className="mt-4">
133+
<iframe className="sm:w-[560px] sm:h-[315px]" src="https://www.youtube.com/embed/Xl1KdBE7mVg?si=NMhq6QzVIcR-zWV1" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowFullScreen></iframe>
134+
</div>
132135
<div className="py-4 px-2 sm:max-w-screen-lg w-full my-2">
133136
<h2 className="text-3xl sm:text-4xl text-center font-semibold font-display">
134137
Browse Prompts
135138
</h2>
136139
<div className="flex items-center justify-center relative">
137-
<div className="border-0 flex items-center px-4 py-2 mt-4 mx-auto outline-none gap-2 bg-secondary-2 hover:bg-secondary-1 h-[50px] rounded-full lg:w-[550px] w-9/12">
140+
<div className="border-0 flex items-center px-4 py-2 mt-4 mx-auto outline-none gap-2 bg-secondary-2 hover:bg-secondary-1 h-[50px] rounded-full w-11/12 lg:w-[550px]">
138141
<Search />
139142
<input className="h-full outline-none flex-1 bg-transparent" value={inpValue} onChange={(e) => {setInpValue(e.target.value)}} />
140-
<select className="outline-none bg-transparent border-0" id="search-filter" value={filterSourceValue} onChange={(e) => {setFilterSourceValue(e.target.value)}}>
143+
<select className="outline-none bg-transparent border-0 w-[80px] md:w-auto" id="search-filter" value={filterSourceValue} onChange={(e) => {setFilterSourceValue(e.target.value)}}>
141144
<option value="all">All</option>
142145
<option value="gpt">ChatGPT</option>
143146
<option value="bard">Bard</option>

0 commit comments

Comments
 (0)