Skip to content

Commit b855277

Browse files
committed
fix lint errors
1 parent 7dd54eb commit b855277

File tree

1 file changed

+7
-8
lines changed
  • packages/nextjs/app/builders/0x3BFbE4E3dCC472E9B1bdFC0c177dE3459Cf769bf

1 file changed

+7
-8
lines changed

packages/nextjs/app/builders/0x3BFbE4E3dCC472E9B1bdFC0c177dE3459Cf769bf/page.tsx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
import { useEffect, useState } from "react";
44
import Image from "next/image";
5-
import { FaTwitter, FaGithub } from "react-icons/fa";
65
import { NextPage } from "next";
76
import { useTheme } from "next-themes";
7+
import { FaGithub, FaTwitter } from "react-icons/fa";
88
import { Address } from "~~/components/scaffold-eth";
99

1010
const BUILDER_ADDRESS = "0x3BFbE4E3dCC472E9B1bdFC0c177dE3459Cf769bf";
@@ -26,7 +26,7 @@ const LynndabelProfile: NextPage = () => {
2626
return (
2727
<div className="min-h-screen flex items-center justify-center p-4 font-sans">
2828
<div
29-
className={`w-full max-w-md mx-auto overflow-hidden rounded-3xl shadow-md shadow-secondary ${isDarkMode ? 'bg-base-100' : 'bg-white'} transform ${isVisible ? "translate-y-0 opacity-100" : "translate-y-8 opacity-0"} transition-all duration-700`}
29+
className={`w-full max-w-md mx-auto overflow-hidden rounded-3xl shadow-md shadow-secondary ${isDarkMode ? "bg-base-100" : "bg-white"} transform ${isVisible ? "translate-y-0 opacity-100" : "translate-y-8 opacity-0"} transition-all duration-700`}
3030
>
3131
<div className="relative">
3232
<div className="h-36 bg-secondary overflow-hidden relative">
@@ -38,11 +38,11 @@ const LynndabelProfile: NextPage = () => {
3838
<div className="absolute left-0 right-0 -bottom-16 flex justify-center">
3939
<div className="p-1 bg-secondary rounded-full shadow-md shadow-secondary group">
4040
<div className="p-1 bg-base-100 rounded-full overflow-hidden transform transition-all duration-300 group-hover:scale-105">
41-
<Image
42-
src="/lynnavatar.jpg"
43-
alt="Lynndabel's Avatar"
44-
width={128}
45-
height={128}
41+
<Image
42+
src="/lynnavatar.jpg"
43+
alt="Lynndabel's Avatar"
44+
width={128}
45+
height={128}
4646
priority
4747
className="rounded-full object-cover"
4848
/>
@@ -73,7 +73,6 @@ const LynndabelProfile: NextPage = () => {
7373
</div>
7474
</div>
7575

76-
7776
<div className="divider before:bg-secondary after:bg-secondary">Connect</div>
7877

7978
<div className="grid grid-cols-2 gap-4 mb-8">

0 commit comments

Comments
 (0)