SSLR/web/public/about.html

92 lines
3.5 KiB
HTML
Raw Normal View History

2025-02-13 22:40:07 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Solace Of Service</title>
<link rel="stylesheet" href="main.css" />
2025-02-15 21:04:47 +08:00
<link rel="icon" type="image/x-icon" href="./img/SOS_Logo_WBG.png" />
2025-02-13 22:40:07 +08:00
</head>
<body class="h-screen w-screen main-colour">
2025-02-15 21:04:47 +08:00
<header class="flex w-full h-20 secondary-colour fixed top-0 left-0 right-0">
2025-02-13 22:40:07 +08:00
<img src="./img/SOS_Logo_WBG.png" alt="product logo" class="p-1 ml-10" />
2025-02-15 21:04:47 +08:00
<nav class="w-full flex justify-around">
2025-02-13 22:40:07 +08:00
<a href="./index.html" class="px-4 text-justify h-fit w-fit self-center"
><h1>Home</h1></a
>
<a href="#" class="px-4 text-justify h-fit w-fit self-center"
><h1>About SSLR</h1></a
>
2025-02-15 21:04:47 +08:00
<a href="./profile.html" class="px-4 text-justify h-fit w-fit self-center"
><h1>Profile</h1></a
>
</nav>
</header>
<div class="h-20"></div>
2025-02-17 02:54:48 +08:00
<section class="flex justify-center py-10 px-[15vw] flex-row">
2025-02-15 21:04:47 +08:00
<img
src="./img/SSLR_CompanyLogo.png"
alt="Logo Of SSLR"
2025-02-17 02:54:48 +08:00
class="py-4 h-[30vw] w-[30vw] self-start"
2025-02-15 21:04:47 +08:00
/>
2025-02-17 02:54:48 +08:00
<img
src="./img/SOS_Logo_WBG.png"
alt="Logo Of Our Game"
class="py-4 h-[30vw] w-[30vw] self-end"
/>
2025-02-15 21:04:47 +08:00
</section>
<section class="section-colour h-fit w-full py-10 px-[15vw]">
2025-02-17 02:54:48 +08:00
<h1 class="font-bold text-4xl text-center">About SSLR</h1>
<br>
2025-02-15 21:04:47 +08:00
<h2>
"Sweet Starry Lil Rabbits" is a name born from the shared initials of our four
founders—Sai, Shannon, Livinia, and Ryan. Our name reflects not only who we are
but also the spirit we want to bring to the world: a blend of sweetness,
imagination, and individuality.
<br />
<br />
As a close-knit group of friends who came together with a shared vision of
creating something extraordinary, we chose "Sweet Starry Lil Rabbits" because it
captures our playful and welcoming personalities while standing out as uniquely
memorable. Its a name that symbolizes our friendship, creativity, and desire to
build experiences that feel comforting and inspiring, hoping to invite others into
a world of warmth, wonder, and connection—qualities that define both our company
and our dynamic as a team.
</h2>
</section>
<section class="h-fit w-full y py-8 px-[15vw]">
<h1 class="text-2xl font-bold pb-2">WHO ARE WE</h1>
<div class="flex">
2025-02-17 02:54:48 +08:00
<article class="w-[35%] mx-[2.5%]">
<h1 class= "font-bold">Shannon</h1>
<img class="aspect-auto rounded-full w-60 h-60" src="./img/Shannon.jpg" alt="picture of Shannon" />
<h2><b>Roles: </b>Scrum Master,Art Director, Assistant Level Designer</h2>
2025-02-15 21:04:47 +08:00
</article>
2025-02-17 02:54:48 +08:00
<article class="w-[35%] mx-[2.5%]">
<h1 class="font-bold">Ryan</h1>
<img class="aspect-auto rounded-full" src="./img/Ryan.jpg" alt="picture of Ryan" />
2025-02-15 21:04:47 +08:00
<h2>
2025-02-17 02:54:48 +08:00
<b>Roles: </b>Product Owner, Lead Web Developer , Assistant Game Develope
2025-02-15 21:04:47 +08:00
</h2>
</article>
2025-02-17 02:54:48 +08:00
<article class="w-[35%] mx-[2.5%]">
<h1 class="font-bold">Sai</h1>
<img class="aspect-auto rounded-full" src="./img/Sai.jpg" alt="picture of Sai" />
2025-02-15 21:04:47 +08:00
<h2>
2025-02-17 02:54:48 +08:00
<b>Roles: </b>Lead Game Designer, Marketing Lead, Assistant Web Developer
2025-02-15 21:04:47 +08:00
</h2>
</article>
2025-02-17 02:54:48 +08:00
<article class="w-[30%] mx-[2.5%]">
<h1 class="font-bold">Livinia</h1>
<img class="aspect-auto rounded-full" src="./img/Livinia.jpg" alt="picture of Livinia" />
2025-02-15 21:04:47 +08:00
<h2>
2025-02-17 02:54:48 +08:00
<b>Roles: </b>Lead Game Developer, UI/UX Lead, Assistant Graphic Designer
2025-02-15 21:04:47 +08:00
</h2>
</article>
2025-02-13 22:40:07 +08:00
</div>
2025-02-15 21:04:47 +08:00
</section>
2025-02-17 02:54:48 +08:00
2025-02-13 22:40:07 +08:00
</body>
</html>