Skip to content

Commit

Permalink
updated classes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanL2015 committed Sep 4, 2024
1 parent 6f315c5 commit 36a0b1e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 9 deletions.
8 changes: 2 additions & 6 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,11 @@
}

.bgDark {
background-color: #2b4162;
background-image: linear-gradient(315deg, #2b4162 0%, #12100e 74%);
z-index: -10;
@apply bg-gradient-to-br from-b0 to-b1 -z-10;
}

.bgLight {
background-color: #f9fcff;
background-image: linear-gradient(147deg, #f9fcff 0%, #dee4ea 74%);
z-index: -10;
@apply bg-gradient-to-br from-b4 to-b5 -z-10;
}

/* For Webkit-based browsers (Chrome, Safari and Opera) */
Expand Down
31 changes: 28 additions & 3 deletions src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default function Home() {
className="text-3xl md:text-6xl dark:text-b5 text-b0 font-sans m-4"
></TypeAnimation>
<div className="text-lg md:text-2xl dark:text-b3 text-b2 md:self-end m-4">
<b>Computer Science</b> and <b>Data Science</b> at <b>UC Berkeley</b>
<b>Computer Science</b>, <b>Economics</b>, and <b>Data Science</b> at <b>UC Berkeley</b>
</div>
</motion.div>
<Break></Break>
Expand All @@ -73,8 +73,8 @@ export default function Home() {
<div className="section">
<p>
Welcome to my website! My name is <b>Daniel Liu</b>, and I&apos;m a{" "}
<b>Junior</b> at <b>UC Berkeley</b> majoring in{" "}
<b>Computer Science</b> and minoring in <b>Data Science</b>. I am also
<b>Junior</b> at <b>UC Berkeley</b> double majoring in{" "}
<b>Computer Science</b> and <b>Economics</b>, and minoring in <b>Data Science</b>. I am also
a part of Berkeley&apos;s <b>Upsilon Pi Epsilon (UPE)</b> chapter.
</p>
<p>
Expand Down Expand Up @@ -211,6 +211,9 @@ export default function Home() {
<a href="https://www.cs61c.org/">CS 61C</a>: Great Ideas in Computer
Architecture - <b>A+</b>
</li>
<li>
<a href="https://classes.berkeley.edu/content/2023-fall-econ-1-001-lec-001">Econ 1</a>: Introduction to Economics - <b>A+</b>
</li>
</ul>
</div>
<div className="section-bg">
Expand All @@ -234,6 +237,28 @@ export default function Home() {
</li>
</ul>
</div>
<div className="section-bg">
<h2>Fall 2024</h2>
<ul>
<li>
<a href="https://classes.berkeley.edu/content/2024-spring-econ-100a-001-lec-001">
Econ 100A
</a>
: Microeconomics - <b>Current</b>
</li>
<li>
<a href="https://cs162.org/">CS 162</a>: Operating Systems -{" "}
<b>Current</b>
</li>
<li>
<a href="https://www2.eecs.berkeley.edu/Courses/EECS127/">EECS 127</a>:
Optimization Models in Engineering - <b>Current</b>
</li>
<li>
<a href="https://gamescrafters.berkeley.edu/">CS198-199</a>: Gamescrafters - <b>Current</b>
</li>
</ul>
</div>
</main>
);
}

0 comments on commit 36a0b1e

Please sign in to comment.