Skip to content

Commit 8634892

Browse files
committed
fix: issue of build
1 parent 2a73d20 commit 8634892

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

client/components/CustomTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const CustomTable = ({ data }: any) => {
5555
height={50}
5656
className="h-10 w-10 rounded-full"
5757
src={
58-
'https://example.comm/photo-1570295999919-56ceb5ecca61'
58+
'https://images.unsplash.com/photo-1570295999919-56ceb5ecca61'
5959
}
6060
alt=""
6161
/>

client/pages/index.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { FC, useState } from 'react';
22
import axios from 'axios';
3+
import Head from 'next/head';
34

45
import CustomTable from '../components/CustomTable';
56

@@ -8,6 +9,11 @@ const Home: FC<{ data: string[] }> = ({ data }) => {
89

910
return (
1011
<div className="App">
12+
<Head>
13+
<title>Home Page</title>
14+
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
15+
</Head>
16+
1117
<header className="text-center">
1218
<h1 className="px-10 py-10 bg-green-400 font-semibold font-mono text-white">
1319
Hello from React + Tailwind + Typscript

0 commit comments

Comments
 (0)