From b85f0c4860b862ca86552f6407308907c2c719f2 Mon Sep 17 00:00:00 2001 From: mochi-yu Date: Fri, 20 Mar 2026 22:09:41 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=E3=83=88=E3=83=83=E3=83=97=E3=83=9A?= =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=81=AE=E3=80=8C=20Go=20Conference=20?= =?UTF-8?q?=E3=81=A8=E3=81=AF=E3=80=8D=E3=81=A8=E3=80=8C=E3=82=B9=E3=83=9D?= =?UTF-8?q?=E3=83=B3=E3=82=B5=E3=83=BC=E5=8B=9F=E9=9B=86=E4=B8=AD=E3=80=8D?= =?UTF-8?q?=E3=81=AE=E6=83=85=E5=A0=B1=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/GlobalStyles.astro | 1 + src/components/top/About.astro | 93 +++++++++++++++++++++ src/components/top/SponsorRecruitment.astro | 47 +++++++++++ src/pages/index.astro | 29 +------ 4 files changed, 145 insertions(+), 25 deletions(-) create mode 100644 src/components/top/About.astro create mode 100644 src/components/top/SponsorRecruitment.astro 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"; --- - -
+ +