-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
univName: '순천향대학교' | ||
univImg: '/images/univ/cnu/cnu.jpeg' | ||
univDescription: '순천향대학교 동아리 리스트' | ||
leadName: '윤정민' | ||
viceLeadName: [''] | ||
clubList: ['SOUP'] | ||
--- | ||
|
||
|
||
import UnivInfo from '@components/univ/UnivInfo.astro' | ||
|
||
<UnivInfo | ||
univName="순천향대학교" | ||
clubList={['SOUP']} | ||
/> | ||
import UnivOrgCard from '@components/univ/UnivOrgCard.astro'; | ||
|
||
<section class="bg-white dark:bg-gray-900"> | ||
<div class="container px-6 py-10 mx-auto"> | ||
<h1 class="text-2xl font-semibold text-center text-gray-800 capitalize lg:text-3xl dark:text-white">Organizers</h1> | ||
|
||
<p class="max-w-2xl mx-auto my-6 text-center text-gray-500 dark:text-gray-300">순천향대학교에서는 원활한 SUSC활동을 위해 아래의 구성원들이 고생해주고 있습니다.</p> | ||
<div class="grid grid-cols-1 gap-8 mt-8 xl:mt-16 md:grid-cols-2 xl:grid-cols-4"> | ||
<UnivOrgCard | ||
orgImg="/images/defaultImg/SUSC.png" | ||
orgName="윤정민" | ||
role="SOUP Lead" | ||
/> | ||
</div> | ||
</div> | ||
</section> | ||
|