projectb/index.html
2023-06-08 00:03:05 +05:30

111 lines
3.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project B</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<article>
<header>
<h4>Project B</h4>
</header>
<section id="above_fold" class="gap-4">
<img id="hero_illustration" src="assets/hero illustrator.svg" alt="">
<div class="grid gap-0-5">
<h2>Real estate tokenization through the power of Blockchain technology.</h2>
<p>A global reference of tokenization aiming financial inclusiveness</p>
</div>
</section>
<section class="gap-1-5">
<div class="grid">
<h4>International Payments</h4>
<h2>Pay with Bitcoin</h2>
</div>
<p>
Explore the world with seamless property rentals,
powered by Bitcoin payments from anywhere on the globe!
</p>
<img src="assets/bitcoin line art.svg" alt="">
</section>
<section class="gap-2">
<h4 class="section-header">Proof of Concept</h4>
<p>
A tokenized room at El Zonte beach, El Salvador
</p>
<div id="poc_images">
</div>
<ul id="poc_stats">
<li class="stat">
<div class="stat__number">1030</div>
<div class="stat__title">Stays invested</div>
</li>
<li class="stat">
<div class="stat__number">20</div>
<div class="stat__title">Stays consumed</div>
</li>
<li class="stat">
<div class="stat__number">4</div>
<div class="stat__title">Invested stays consumed</div>
</li>
</ul>
</section>
<section>
<h4 class="section-header">Team</h4>
<ul id="team_members"></ul>
</section>
<section>
<h2>Tokenized Real Estate</h2>
</section>
</article>
<script>
const teamMembers = [
{
name: 'Parin Lapasia',
title: 'Principal director and shareholde',
image: 'assets/craig-mckay-jmURdhtm7Ng-unsplash.jpg'
},
{
name: 'Rohit Tripathy',
title: 'Principal director and shareholder',
image: 'assets/Rohit Tripathy.jpg'
},
{
name: 'Puneet Sondh',
title: 'Principal director',
image: 'assets/Puneet Sondh.jpg'
},
{
name: 'Ruchir Gupta',
title: 'Principal director',
image: 'assets/Ruchir Gupta.jpg'
},
]
window.onload = () => {
const teamMembersList = document.getElementById('team_members')
teamMembers.sort((a, b) => a.name.localeCompare(b.name))
teamMembers.forEach(member => {
const { image, name, title } = member
const memberItem = document.createElement('li')
memberItem.classList.add('team-member')
memberItem.innerHTML = `
<img src="${image}" alt="${name} profile picture" loading="lazy">
<p class="team-member__name">${name},</p>
<p class="team-member__title">${title}</p>
`
teamMembersList.appendChild(memberItem)
})
}
</script>
</body>
</html>