Skip to content

Commit

Permalink
feat: Data security section
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed May 18, 2024
1 parent 4318a56 commit f47b498
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/assets/data1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/data2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/data3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/pages/Home/DataSecuritySection.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<template>
<div class="flex py-48 bg-white">
<div class="flex mx-20 gap-x-6">
<div class="m-6 w-1/2">
<h2 class="text-center mb-6">No Harvesting: You are in Control of Your Data</h2>
<p>
Enjoy the peace of mind that comes with Libertai's robust security measures. Advanced encryption protocols,
distributed data storage, and rigorous access controls ensure that your data remains safeguarded against
unauthorized access, surveillance, or exploitation.
</p>
</div>
<div class="flex space w-1/2 gap-x-6 justify-evenly">
<img alt="No harvesting 1" height="408" src="../../assets/data1.svg" width="193" />
<img alt="No harvesting 2" height="408" src="../../assets/data2.svg" width="193" />
<img alt="No harvesting 3" height="408" src="../../assets/data3.svg" width="193" />
</div>
</div>
</div>
</template>
<script lang="ts" setup></script>
2 changes: 2 additions & 0 deletions src/pages/Home/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ import Hero from "./HeroSection.vue";
import PartnersSection from "./PartnersSection.vue";
import FooterSection from "./FooterSection.vue";
import ChatPreviewSection from "./ChatPreviewSection.vue";
import DataSecuritySection from "./DataSecuritySection.vue";
</script>

<template>
<Hero />
<PartnersSection />
<ChatPreviewSection />
<DataSecuritySection />
<FooterSection />
</template>

0 comments on commit f47b498

Please sign in to comment.