Skip to content

Commit 7b2fa52

Browse files
committed
fix eslint errors
1 parent ed608cf commit 7b2fa52

File tree

12 files changed

+6
-837
lines changed

12 files changed

+6
-837
lines changed

app/layout.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import "@/app/globals.css";
2-
import { userAgent } from "next/server";
32
import localFont from "next/font/local";
43
import { Poppins } from "next/font/google";
54
import type { Metadata, Viewport } from "next";
@@ -21,8 +20,6 @@ export const viewport: Viewport = {
2120
initialScale: 1,
2221
};
2322

24-
let a = []
25-
2623
const avenirNext = localFont({
2724
src: "./fonts/AvenirNextLTPro-Regular.otf",
2825
display: "swap",
@@ -40,7 +37,7 @@ export default function RootLayout({
4037
children: React.ReactNode;
4138
}) {
4239
return (
43-
<html lang="en">
40+
<html lang="en" className={avenirNext.className + " " + poppins.className}>
4441
<body>{children}</body>
4542
</html>
4643
);

app/page.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
"use client";
2-
import { useState, useEffect } from "react";
3-
import Head from "next/head";
42
import Nav from "@/components/nav";
53
import Hero from "@/components/hero";
64
import About from "@/components/about";

components/about.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ export default function About() {
1717
</div>
1818
<div className="about-body-block">
1919
<div className="about-body">
20-
Sophomore at UIUC from a rural town in Illinois with over five years of real-world experience in tech, working across both startups and Fortune 100. I've been incredibly lucky to have done a wide range of work—building cloud infrastructure, automating workflows, scaling systems, and building security software.
20+
Sophomore at UIUC from a rural town in Illinois with over five years of real-world experience in tech, working across both startups and Fortune 100. I&apos;ve been incredibly lucky to have done a wide range of work—building cloud infrastructure, automating workflows, scaling systems, and building security software.
2121
<br />
2222
At my last role, I’m on a senior-level security team at CVS Health, where we were building a Threat Detection Engine that ingests and analyzes over 100TB of logs per day to defend internal systems against attacks.
2323
<br />
24-
I'm very fortunate to have had these opportunities so early on in life. It's given me the chance to work on projects I never imagined I'd be part of, learn how real-world systems operate, and meet some truly generous and inspiring people along the way.
24+
I&apos;m very fortunate to have had these opportunities so early on in life. It&apos;s given me the chance to work on projects I never imagined I&apos;d be part of, learn how real-world systems operate, and meet some truly generous and inspiring people along the way.
2525
<br />
2626
<br />
2727
Outside of work, I enjoy listening to music, playing video games, playing pick-up soccer, skateboarding, learning languages, and tinkering with my computer.

components/about/about.css-e

Lines changed: 0 additions & 131 deletions
This file was deleted.

components/contact.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function Contact() {
1515
email: { value: string };
1616
message: { value: string };
1717
};
18-
const response = await fetch("https://api.web3forms.com/submit", {
18+
await fetch("https://api.web3forms.com/submit", {
1919
method: "POST",
2020
headers: {
2121
"Content-Type": "application/json",
@@ -33,9 +33,9 @@ export default function Contact() {
3333
setSuccess(data.success);
3434
setShowConfirmation(true);
3535
}))
36-
.catch(err => {
36+
.catch(() => {
3737
setSuccess(false);
38-
setShowConfirmation(true);
38+
setShowConfirmation(false);
3939
})
4040
}
4141
return (

components/contact/contact.css-e

Lines changed: 0 additions & 157 deletions
This file was deleted.

components/endorsements/endorsements.css-e

Lines changed: 0 additions & 83 deletions
This file was deleted.

components/footer/footer.css-e

Lines changed: 0 additions & 30 deletions
This file was deleted.

components/hero/hero.css-e

Lines changed: 0 additions & 119 deletions
This file was deleted.

components/hero/scroll-button.module.css-e

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)