added builders page

This commit is contained in:
Mik-TF
2024-06-10 16:41:23 -04:00
parent 54ce982273
commit 96c844f1df
8 changed files with 230 additions and 0 deletions

100
src/pages/builders.astro Normal file
View File

@@ -0,0 +1,100 @@
---
import Layout from '~/layouts/PageLayout.astro';
import Hero from '~/components/widgets/Hero.astro';
import INCAStats from './incastats.astro'
import Partners from './partners.astro'
import Purpose from './purpose.astro'
import Content2 from '~/components/widgets/Content2.astro';
const metadata = {
title: 'Builders',
ignoreTitleTemplate: true,
};
---
<Layout metadata={metadata}>
<!-- Hero Widget ******************* -->
<Hero
id="about"
tagline="Builders"
image={{
src: '~/assets/images/builders_temp.webp',
alt: 'Caos Image',
}}
>
<Fragment slot="title">
Meet the Builders of the Grid!
</Fragment>
<Fragment slot="subtitle">
<span class="font-semibold">Project INCA</span> is proud of its many partnerships<br> providing a thriving ecosystem of like-minded individuals <br>and innovative products and services<br></span
>
</Fragment>
</Hero>
<!-- Content Widget **************** -->
<Content2
link="~/assets/images/mission.jpg"
id="mission"
columns={3}
items={[
{
description: '<a href= "/elastio">Read More</a>',
},
]}
image={{
src: '~/assets/images/elastio.png',
alt: 'Colorful Image',
loading: 'eager',
}}
>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Elastio</h2>
<p>
Elestio is an innovative platform dedicated to providing cutting-edge decentralized applications (dApps) and services to users worldwide. With a focus on accessibility, security, and user empowerment, Elestio aims to revolutionize the way individuals interact with decentralized technologies.
</p>
</Fragment>
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Content2>
<Content2
isReversed
link="~/assets/images/mission.jpg"
id="mission"
columns={3}
items={[
{
description: '<a href= "/sikana">Read More</a>',
},
]}
image={{
src: '~/assets/images/sikana.png',
alt: 'Colorful Image',
loading: 'eager',
}}
>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Sikana</h2>
<p>
Sikana, a platform dedicated to providing education for all, has delivered over 400 million lessons through free educational videos. However, the platform has faced financial challenges in hosting its content at scale. In collaboration with ThreeFold, Sikana aims to overcome these challenges and further its mission of providing accessible education by creating local content in native languages and hosting it on local infrastructure. This partnership will empower communities worldwide with knowledge and skills, irrespective of their financial or geographical limitations.
</p>
</Fragment>
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Content2>
</Layout>