Skip to content

Commit 425ea0f

Browse files
committed
Updated landing page
1 parent cb83fd9 commit 425ea0f

File tree

2 files changed

+28
-6
lines changed

2 files changed

+28
-6
lines changed

next-js-app/src/app/globals.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,20 @@ body {
2424
color: var(--foreground);
2525
font-family: Arial, Helvetica, sans-serif;
2626
}
27+
28+
@keyframes gradient-animation {
29+
0% {
30+
background-position: 0% 50%;
31+
}
32+
50% {
33+
background-position: 100% 50%;
34+
}
35+
100% {
36+
background-position: 0% 50%;
37+
}
38+
}
39+
40+
.animate-gradient {
41+
background-size: 200% 200%;
42+
animation: gradient-animation 3s ease infinite;
43+
}

next-js-app/src/app/page.tsx

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,24 @@ export default function Home() {
1515
<main className="flex flex-col gap-y-6 row-start-2 items-center sm:items-start">
1616
<div className="flex flex-col gap-y-4 text-center sm:text-left">
1717
<h1 className="text-4xl font-bold">
18-
Hello, I am James.
18+
Hello, I am{" "}
19+
<span className="inline-block bg-clip-text text-transparent bg-gradient-to-r from-[#D73F09] to-[#FDB813] transition-transform duration-300 ease-in-out hover:scale-110 hover:rotate-[-5deg] animate-gradient">
20+
James
21+
</span>
22+
.
1923
</h1>
2024
<p className="text-lg max-w-xl">
2125
I am a Computer Science student focusing on Machine Learning with a
2226
background in Full Stack, ML/AI, and DevOps. I decided to make a
2327
portfolio page and create a unique portfolio experience.
2428
</p>
2529
<p className="text-xs max-w-xl text-gray-500">
26-
The Wormhole is a unique browsing experience, where AI generates each
27-
page being viewed. It has been fed information about me, and makes
28-
each vist a one of a kind portfolio viewing experience. Take
29-
everything with a grain of salt since it is AI generated. I encourage
30-
you to play around wiht it, as this is an experiment. Enjoy, James.
30+
The Wormhole is a unique browsing experience, where AI generates
31+
each page being viewed. It has been fed information about me, and
32+
makes each vist a one of a kind portfolio viewing experience. Take
33+
everything with a grain of salt since it is AI generated. I
34+
encourage you to play around wiht it, as this is an experiment.
35+
Enjoy, James.
3136
</p>
3237
</div>
3338
<div className="flex flex-col gap-y-4 items-center sm:items-start">

0 commit comments

Comments
 (0)