Skip to content

Commit 36c052d

Browse files
chore: remove gradient
1 parent f50d8a1 commit 36c052d

6 files changed

Lines changed: 5 additions & 9 deletions

File tree

index.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<!doctype html>
2-
<html
3-
lang="en"
4-
class="bg-gradient-to-br from-gray-950 to-slate-900 text-gray-300"
5-
>
2+
<html lang="en" class="bg-slate-900 text-gray-300">
63
<head>
74
<meta charset="UTF-8" />
85
<link rel="icon" type="image/svg+xml" href="/coffee.svg" />

src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const projects = [
5050

5151
export default function App() {
5252
return (
53-
<div className="flex min-h-screen flex-col">
53+
<div className="flex flex-col">
5454
<header>
5555
<NavBar></NavBar>
5656
</header>

src/components/IntroCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { IntroInfo } from './IntroInfo'
33
export function IntroCard() {
44
return (
55
<>
6-
<div className="m-8 rounded-xl border-2 border-gray-700 p-4 md:max-w-6xl md:p-8">
6+
<div className="m-8 mt-2 rounded-xl border-2 border-gray-700 p-4 md:max-w-6xl md:p-8">
77
<div className="grid grid-cols-1 place-items-center md:grid-flow-row-dense lg:grid-cols-3">
88
<div className="flex-none px-4">
99
<img

src/components/IntroInfo.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export function IntroInfo() {
22
return (
33
<>
4-
<div className="pb-2 text-xl font-bold">Hi There! 👋</div>
4+
<div className="pb-2 text-2xl font-bold">Hi There! 👋</div>
55
<div className="pb-2">
66
I'm <strong>Rafay Khan</strong>, a recent Computer Science (BSE)
77
graduate from Princeton University. I like to automate things and

src/components/NavBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export function NavBar() {
2020
))
2121
return (
2222
<>
23-
<div className="grid grid-flow-col place-content-center divide-x-2 divide-solid divide-gray-400 border-b-2 border-gray-700 py-2">
23+
<div className="grid grid-flow-col place-content-center divide-x-2 divide-solid divide-gray-600 py-2 pt-4">
2424
{navItems}
2525
</div>
2626
</>

src/components/ProjectsTable.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export function ProjectsTable({ projects }) {
77
return (
88
<>
99
<div className="grid grid-cols-1 place-items-center gap-8">
10-
<div className="text-4xl font-bold">Projects</div>
1110
<div className="mx-4 grid grid-flow-row-dense gap-2 px-4 lg:grid-cols-2">
1211
{items}
1312
</div>

0 commit comments

Comments
 (0)