Skip to content

Commit

Permalink
Upload some pictures on main page
Browse files Browse the repository at this point in the history
  • Loading branch information
naru200 committed Jan 14, 2025
1 parent f107dbd commit d2595ea
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website/src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import BackToTop from "@components/BackToTop.astro";
</div>
</div>
<div>
&copy; 2024 {`|`}
&copy; 2025 {`|`}
{SITE.NAME}
</div>
</Container>
Expand Down
Binary file added website/src/images/main01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/src/images/main02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/src/images/main03.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion website/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
---
import { getCollection } from "astro:content";
import { Image } from "astro:assets";
import type { CollectionEntry } from "astro:content";
import PageLayout from "@layouts/PageLayout.astro";
import Container from "@components/Container.astro";
import ArrowCard from "@components/ArrowCard.astro";
import ArrowCardLink from "@components/ArrowCardLink.astro";
import { HOME } from "@consts";
import type { CollectionEntry } from "astro:content";
import SlackSVG from "@images/slack.svg";
import MeetUpSVG from "@images/meetup.svg";
import Main01 from "@images/main01.jpg";
import Main02 from "@images/main02.jpg";
import Main03 from "@images/main03.jpg";
const data = (await getCollection("sessions"))
.filter((session) => !session.data.draft)
Expand Down Expand Up @@ -52,6 +56,12 @@ const dates = Object.keys(sessions).sort(
네트워킹을 지향하고 있습니다.
</p>

<div class="flex items-center h-48 space-x-4">
<Image src={Main01} alt="" class="object-cover h-full rounded-md" />
<Image src={Main02} alt="" class="object-cover h-full rounded-md" />
<Image src={Main03} alt="" class="object-cover h-full rounded-md" />
</div>

<p>
<b class="font-semibold">
AWSKRUG 슬랙의 #beginner 채널에서 공지 및 소통이 이루어지고
Expand Down

0 comments on commit d2595ea

Please sign in to comment.