Skip to content

Commit 18efb35

Browse files
rickstaaclaude
andauthored
chore: add Prettier, lint fixes, and typecheck scripts (#29)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 33a1f21 commit 18efb35

16 files changed

Lines changed: 70 additions & 870 deletions

app/brand/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ export default function BrandPage() {
12591259
}}
12601260
/>
12611261
{/* B&W image, darkened */}
1262-
{/* eslint-disable-next-line @next/next/no-img-element */}
1262+
12631263
<img
12641264
src="/images/brand/galaxy.jpg"
12651265
alt="NGC 4414 spiral galaxy — NASA/Hubble"
@@ -1379,7 +1379,7 @@ export default function BrandPage() {
13791379
"linear-gradient(160deg, #030d09 0%, #051a10 40%, #071e14 100%)",
13801380
}}
13811381
/>
1382-
{/* eslint-disable-next-line @next/next/no-img-element */}
1382+
13831383
<img
13841384
src="/images/brand/galaxy.jpg"
13851385
alt=""

app/foundation/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ function GrainCanvas() {
917917
/* Tile grid with cutout hole + corner crosshairs */
918918
/* ------------------------------------------------------------------ */
919919

920-
function TileGrid({ children }: { children?: React.ReactNode }) {
920+
function TileGrid() {
921921
const gridRef = useRef<HTMLDivElement>(null);
922922
const [tile, setTile] = useState(0);
923923
const [gridOffsetX, setGridOffsetX] = useState(0);

app/primer/opengraph-image.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ export default async function OGImage() {
121121

122122
{/* Devices illustration — full view with long arm, slight laptop crop on right edge */}
123123
<img
124+
alt=""
124125
src={illustrationUri}
125126
width={900}
126127
height={640}

components/home/BuiltOnLivepeer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { motion } from "framer-motion";
44
import Container from "@/components/ui/Container";
55
import SectionHeader from "@/components/ui/SectionHeader";
6-
import Button from "@/components/ui/Button";
6+
77

88
const fadeUp = {
99
hidden: { opacity: 0, y: 12 },

components/home/Capabilities.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,12 +209,10 @@ interface Detection {
209209

210210
function TrackingBox({
211211
d,
212-
i,
213212
active,
214213
entered,
215214
}: {
216215
d: Detection;
217-
i: number;
218216
active: boolean;
219217
entered: boolean;
220218
}) {
@@ -400,7 +398,6 @@ function AnalysisVisual() {
400398
<TrackingBox
401399
key={i}
402400
d={d}
403-
i={i}
404401
active={active[i]}
405402
entered={entered[i]}
406403
/>

components/home/CommunityCTA.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import { motion } from "framer-motion";
44
import Container from "@/components/ui/Container";
5-
import Button from "@/components/ui/Button";
65
import ImageMask from "@/components/ui/ImageMask";
76
import GlowOverlay from "@/components/ui/GlowOverlay";
87
import { EXTERNAL_LINKS } from "@/lib/constants";

components/home/Hero.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import ImageMask from "@/components/ui/ImageMask";
2424
*/
2525

2626
const COLS = 9;
27-
const ROWS = 5;
2827
const TILE = 100 / COLS; // tile size in vw — used for both axes
2928

3029
const RAYS = [0, 22, 45, 68, 90, 135, 170, -15, -40, -70];

0 commit comments

Comments
 (0)