Skip to content

Commit

Permalink
update timeline coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
Weile-Zheng committed Sep 17, 2024
1 parent f42a063 commit 1f5fb22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions components/timeline.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default function Timeline({ events }) {
<Link
className="font-bold underline"
href="https://calendar.google.com/calendar/embed?src=c_22ca0c151585760442cad5796fb91bd18b7db11d813e9143e38549aadce65afe%40group.calendar.google.com&ctz=America%2FNew_York"
style={{ color: "#C8BAF3" }}
>
Subscribe to our events calendar
</Link>
Expand Down
6 changes: 3 additions & 3 deletions pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import Layout from "@/components/layout";
import SponsorSection from "@/components/sponsorSection";
import CompanySection from "@/components/companySection";
import Timeline from "@/components/timeline";
import Wave from "@/components/wave";
import Wave180 from "@/components/wave180";
import CommunityImages from "@/components/communityImages";
import loadStaticData from "@/shared/static";
import Image from "next/image";
Expand Down Expand Up @@ -72,7 +70,9 @@ export default function Home({
>
{timeline.show_on_homepage && (
<div className="bg-grey p-4 sm:p-8 rounded-lg">
<h2 className="text-3xl font-bold mb-4">{timeline.title}</h2>
<h2 className="text-3xl font-bold mb-4 gradient-text">
{timeline.title}
</h2>
<Timeline events={timeline.events} />
</div>
)}
Expand Down

0 comments on commit 1f5fb22

Please sign in to comment.