diff --git a/src/components/GlobalStyles.astro b/src/components/GlobalStyles.astro index b7042b6..6b64283 100644 --- a/src/components/GlobalStyles.astro +++ b/src/components/GlobalStyles.astro @@ -59,6 +59,7 @@ line-height: 1.75; font-family: "Noto Sans JP", sans-serif; min-width: 320px; + color: var(--text-primary); } .font-barlow { diff --git a/src/components/top/About.astro b/src/components/top/About.astro new file mode 100644 index 0000000..01e292b --- /dev/null +++ b/src/components/top/About.astro @@ -0,0 +1,93 @@ +--- +import Chip from "../ui/Chip.astro"; +import SectionTitle from "../ui/SectionTitle.astro"; + + +--- + +
+
+ + Go Conferenceとは + + Go Conference はプログラミング言語 ”Go” ユーザーのためのカンファレンスです。 +
+ +
+
+
+ +
+ 2026年9月11日(金)  
10:00 - 19:00 (開場 9:00)
+
+
+
+ +
+ 東京都中野区中野4丁目10番2号 
中野セントラルパークサウス1,B1F
+
+
+
+ +
+ 後日公開 +
+
+
+ + diff --git a/src/components/top/SponsorRecruitment.astro b/src/components/top/SponsorRecruitment.astro new file mode 100644 index 0000000..8299cd4 --- /dev/null +++ b/src/components/top/SponsorRecruitment.astro @@ -0,0 +1,47 @@ +--- +import Button from "../ui/Button.astro"; +import SectionTitle from "../ui/SectionTitle.astro"; + +--- + + + + diff --git a/src/pages/index.astro b/src/pages/index.astro index cca371b..8e285c4 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,35 +1,14 @@ --- +import About from "../components/top/About.astro"; import MainVisual from "../components/top/MainVisual.astro"; +import SponsorRecruitment from "../components/top/SponsorRecruitment.astro"; import Layout from "../layouts/Layout.astro"; --- - -
+ +