Skip to content

Commit

Permalink
feat: Company hero (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola authored May 19, 2024
1 parent 0126604 commit 7ecbd5d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/assets/company.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/pages/Company/PioneeringForceSection.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<template>
<div class="bg-white grid md:grid-cols-[60%_40%]">
<div class="flex flex-col justify-center items-center text-center max-w-xl m-auto gap-y-6">
<h2>A Pioneering Force in Decentralized AI</h2>
<p class="body-small">
Libertai is a revolutionary company that is transforming the AI landscape by developing decentralized AI
solutions. Founded on the principles of transparency, security, and community-driven innovation, Libertai is
committed to creating a new paradigm for artificial intelligence.
</p>
</div>
<img alt="Company" class="max-md:max-h-80 m-auto" src="../../assets/company.svg" />
</div>
</template>
<script lang="ts" setup></script>
2 changes: 2 additions & 0 deletions src/pages/Company/index.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<script lang="ts" setup>
import ProductTextsSection from "./ProductTextsSection.vue";
import TeamTextsSection from "./TeamTextsSection.vue";
import PioneeringForceSection from "./PioneeringForceSection.vue";
</script>

<template>
<PioneeringForceSection />
<ProductTextsSection />
<TeamTextsSection />
</template>

0 comments on commit 7ecbd5d

Please sign in to comment.