Skip to content

Commit 9c51bc5

Browse files
authored
Merge pull request #80 from karelnagel/dev
fixed build error
2 parents 648b749 + f4423a2 commit 9c51bc5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

landing/app/page.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Image from "next/image";
33
import { Download } from "~/components/Download";
44
import { github } from "~/config";
55

6-
export const Hero = () => {
6+
const Hero = () => {
77
return (
88
<div className=" grid grid-cols-2 items-center h-screen">
99
<div className="flex flex-col space-y-4">
@@ -16,9 +16,7 @@ export const Hero = () => {
1616
</Link>
1717
</div>
1818
</div>
19-
<div>
20-
{/* <Image priority src="/favicon.png" alt="video" height={400} width={600} className="" /> */}
21-
</div>
19+
<div>{/* <Image priority src="/favicon.png" alt="video" height={400} width={600} className="" /> */}</div>
2220
</div>
2321
);
2422
};

0 commit comments

Comments
 (0)