Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/components/headers/MeetCSI.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
To create a center where students can innovate with the latest technology.
</p>
<div class="text-center transition-colors ease-in-out md:text-left">
<LinkButton href="#mission-vision">Mission and Vision</LinkButton>
<LinkButton href="#mission-vision">UP CSI Core Messages and Tagline</LinkButton>
<LinkButton href="/people">See Team</LinkButton>
</div>
</div>
Expand Down
54 changes: 36 additions & 18 deletions src/lib/components/panels/MissionVisionPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,47 +13,65 @@
id="mission-vision"
>
<div class="flex flex-col gap-8">
<div class="text-center text-2xl">Mission</div>
<div class="text-center text-2xl">Core Messages</div>

<div class="align-center flex flex-col justify-evenly gap-8 md:flex-row md:gap-4">
<Card src={develop}>
<span slot="heading">Develop well-rounded DCS students</span>
<span slot="content"
>with fundamental classroom learning through practical experience</span
<span slot="heading">Purpose</span>
<span slot="content">
UP CSI empowers <b class="text-xl">students to become professionals</b>, and
professionals to remain lifelong learners. The organization and its members
strive to
<b class="text-xl"
>constantly improve, engineer solutions, and serve the community.</b
></span
>
</Card>
<Card src={establish}>
<span slot="heading">Establish DCS as a center of student innovation</span>
<span slot="content">and excellent in software engineering</span>
<span slot="heading">Mission</span>
<span slot="content"
>To <b class="text-xl">provide opportunities</b> wherein students can enhance
their software engineering skills and their innovative thinking. To
<b class="text-xl">develop and showcase a diverse set of software projects.</b
></span
>
</Card>
<Card src={improve}>
<span slot="heading">Improve people's lives by producing works</span>
<span slot="content"
>that advocate the right use of Computer Science and Software Engineering</span
<span slot="heading">Vision</span>
<span slot="content">
To establish <b class="text-xl"
>UP CSI as the premier organization for software engineering and student
innovation</b
> whose members are capable of developing practical solutions to everyday problems.</span
>
</Card>
</div>
</div>
<div class="flex flex-col gap-8">
<div class="text-center text-2xl">Vision</div>
<div class="text-center text-2xl">CSI Tagline</div>
<div class="align-center flex flex-col justify-evenly gap-8 md:flex-row md:gap-4">
<Card src={learn}>
<span slot="heading">Learn</span>
<span slot="content"
>Create development camps wherein students can enrich their skills in Software
Engineering.</span
<span slot="content">
We strive to <b class="text-xl"
>continuously grow by embracing new knowledge and experiences</b
>, using both success and failure as stepping stones toward greater service and
impact.</span
>
</Card>
<Card src={create}>
<span slot="heading">Create</span>
<span slot="content"
>Have a diverse set of software projects to enhance the versatility of UP CSI.</span
<span slot="content">
We <b class="text-xl">build solutions and opportunities</b> that shape the future
we aspire to, turning ideas into tangible outcomes.</span
>
</Card>
<Card src={innovate}>
<span slot="heading">Innovate</span>
<span slot="content"
>Showcase the quality projects produced by the Department of Computer Science
(DCS) and the UP CSI and make them accessible to the public.</span
<span slot="content">
We push boundaries through <b class="text-xl">creative problem solving</b>,
finding new ways forward while remaining grounded in professional and ethical
principles.</span
>
</Card>
</div>
Expand Down