From b4bf22ccbc33f848bab9efe6b8764d60aafa8c4d Mon Sep 17 00:00:00 2001 From: Tyrel Chambers Date: Thu, 6 Nov 2025 13:08:12 -0500 Subject: [PATCH 1/8] html foundation --- .../CommunityEvents/CommunityEvents.astro | 21 +++++++++++++++++++ .../CommunityEvents/styles.module.css | 14 +++++++++++++ src/pages/index.astro | 3 +++ 3 files changed, 38 insertions(+) create mode 100644 src/components/CommunityEvents/CommunityEvents.astro create mode 100644 src/components/CommunityEvents/styles.module.css diff --git a/src/components/CommunityEvents/CommunityEvents.astro b/src/components/CommunityEvents/CommunityEvents.astro new file mode 100644 index 00000000000..0575200680f --- /dev/null +++ b/src/components/CommunityEvents/CommunityEvents.astro @@ -0,0 +1,21 @@ +--- +import { SvgArrowRight2, Typography } from "@chainlink/blocks" +import styles from "./styles.module.css" +--- + +
+
+ + Community Events + + + + + +
+
diff --git a/src/components/CommunityEvents/styles.module.css b/src/components/CommunityEvents/styles.module.css new file mode 100644 index 00000000000..61b151d449c --- /dev/null +++ b/src/components/CommunityEvents/styles.module.css @@ -0,0 +1,14 @@ +.sectionHeader { + display: flex; + gap: var(--space-4x); + align-items: end; +} +.arrow { + padding: 10px; + border: 1px solid var(--border); + height: fit-content; + cursor: default; + &:hover { + border: 1px solid var(--foreground); + } +} diff --git a/src/pages/index.astro b/src/pages/index.astro index 52e505921c5..f3f570e77a2 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -7,6 +7,7 @@ import * as CONFIG from "../config" import Demos from "~/components/Demos.astro" import { Typography } from "@chainlink/blocks" import LandingHero from "~/components/LandingHero/LandingHero.astro" +import CommunityEvents from "~/components/CommunityEvents/CommunityEvents.astro" const formattedContentTitle = `${CONFIG.PAGE.titleFallback} | ${CONFIG.SITE.title}` --- @@ -22,6 +23,8 @@ const formattedContentTitle = `${CONFIG.PAGE.titleFallback} | ${CONFIG.SITE.titl + +