Skip to content

Commit 5e68190

Browse files
update yaml
1 parent 00f14c3 commit 5e68190

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Build
2323
run: |
2424
export NEXT_LINT_IGNORE_ERRORS=true
25+
export CI=false
2526
npm run build
2627
2728
- name: Deploy

pages/_app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export default function App({
1717
<Header />
1818
<div className='relative w-full h-full'>
1919
<div className='absolute top-0 left-0 max-sm:hidden -mt-8 z-[-1]'>
20-
<Image src={publicFilePath('/background/wave.svg')} width={2000} height={1000} />
21-
<Image src={publicFilePath('/background/wave2.svg')} width={2000} height={1000} />
20+
<Image src={publicFilePath('/background/wave.svg')} alt="Wave" width={2000} height={1000} />
21+
<Image src={publicFilePath('/background/wave2.svg')} alt="Wave 2" width={2000} height={1000} />
2222
</div>
2323
<Component {...pageProps} />
2424
</div>

pages/components/News/News.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ const News = ({ news }: { news?: NewsInterface[] }) => {
2727
key="top-news"
2828
>
2929
<div>{`November 15, 2024`}</div>
30-
<div>🔥🔥 6 years after our Yale Spider 1.0, we're introducing Spider 2.0, the real-world enterprise agentic Text-to-SQL workflow challenge in the LLM era!</div>
30+
<div>🔥🔥 6 years after our Yale Spider 1.0, we&apos;re introducing Spider 2.0, the real-world enterprise agentic Text-to-SQL workflow challenge in the LLM era!</div>
3131
</div>
3232
<div
3333
className='grid grid-cols-[auto,1fr] gap-x-8 flex-wrap py-3 border-b border-black/30 text-sm'
3434
key="top-news"
3535
>
3636
<div>{`October 23, 2024`}</div>
37-
<div>🔥🔥 Excited to see <a href="https://www.anthropic.com/news/3-5-models-and-computer-use" target="_blank" className="underline">AnthropicAI</a> using our <a href="https://os-world.github.io" target="_blank" className="underline">OSWorld</a> (NeurIPS'24) to benchmark their computer use!</div>
37+
<div>🔥🔥 Excited to see <a href="https://www.anthropic.com/news/3-5-models-and-computer-use" target="_blank" className="underline">AnthropicAI</a> using our <a href="https://os-world.github.io" target="_blank" className="underline">OSWorld</a> (NeurIPS&apos;24) to benchmark their computer use!</div>
3838
</div>
3939
<div
4040
className='grid grid-cols-[auto,1fr] gap-x-8 flex-wrap py-3 border-b border-black/30 text-sm'

pages/components/Welcome/Welcome.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from 'react';
22
import { publicFilePath } from '../../../utils';
3+
import Image from 'next/image';
34

45
const Welcome = () => {
56
return (
@@ -21,10 +22,12 @@ const Welcome = () => {
2122
Through these agents, we aim to enable non-experts to access complex systems such as databases, software, and robots while unlocking functionalities across existing applications and physical systems that dramatically expand AI capabilities.
2223
</p>
2324
<div className='col-span-4'>
24-
<img
25-
src={publicFilePath('/demo/teaser.jpg')}
26-
alt='xlang-overview'
27-
className='w-full h-auto'
25+
<Image
26+
src={publicFilePath('/demo/teaser.jpg')}
27+
alt='xlang-overview'
28+
width={500}
29+
height={300}
30+
className='w-full h-auto'
2831
/>
2932
</div>
3033
</div>

0 commit comments

Comments
 (0)