Skip to content

Commit

Permalink
feat(home): Press section
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Jul 2, 2024
1 parent 4dae929 commit c08c553
Show file tree
Hide file tree
Showing 9 changed files with 68 additions and 0 deletions.
Binary file added src/assets/home/press/alexa_blockchain.webp
Binary file not shown.
Binary file added src/assets/home/press/benzinga.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/home/press/ccn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/home/press/cointelegraph.webp
Binary file not shown.
Binary file added src/assets/home/press/cryptonews.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/home/press/cryptonomist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/home/press/cryptoslate.webp
Binary file not shown.
66 changes: 66 additions & 0 deletions src/pages/Home/PressSection.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<template>
<section class="mx-auto max-w-[1440px] bg-neutral-white px-20 py-44">
<div class="mb-12 space-y-6 text-center">
<LTinyHeading>In the press</LTinyHeading>
<h2 class="text-majorelle-500">Proudly featured in</h2>
<p>
Experience the future of AI with Libertai, as it continues to make waves in top publications and news
organizations.
</p>
</div>
<div class="mx-auto grid items-center justify-center gap-6 sm:grid-cols-2 md:grid-cols-3 2xl:grid-cols-4">
<div v-for="article of articles" :key="article.link" class="mx-auto space-y-6">
<a :href="article.link" target="_blank">
<img :src="article.image" alt="media" />
</a>
</div>
</div>
</section>
</template>

<script lang="ts" setup>
import LTinyHeading from "../../components/LTinyHeading.vue";
import CoinTelegraphImage from "../../assets/home/press/cointelegraph.webp";
import BenzingaImage from "../../assets/home/press/benzinga.png";
import CryptonomistImage from "../../assets/home/press/cryptonomist.png";
import CryptoslateImage from "../../assets/home/press/cryptoslate.webp";
import CCNImage from "../../assets/home/press/ccn.png";
import CryptonewsImage from "../../assets/home/press/cryptonews.png";
import AlexaBlockchainImage from "../../assets/home/press/alexa_blockchain.webp";
type PressArticle = {
link: string;
image: string;
};
const articles: PressArticle[] = [
{
link: "https://cointelegraph.com/magazine/real-use-cases-crypto-based-ai-markets-ai-financial-analysis/",
image: CoinTelegraphImage,
},
{
link: "https://benzinga.com/pressreleases/24/06/39377618/libertai-launches-decentralized-ai-ecosystem-powered-by-base-prioritizing-privacy-and-open-source-d",
image: BenzingaImage,
},
{
link: "https://en.cryptonomist.ch/2024/06/18/libertai-launches-decentralized-ai-ecosystem-powered-by-base-prioritizing-privacy-and-open-source-development/",
image: CryptonomistImage,
},
{
link: "https://cryptoslate.com/press-releases/libertai-launches-decentralized-ai-ecosystem-powered-by-base-prioritizing-privacy-and-open-source-development/",
image: CryptoslateImage,
},
{
link: "https://ccn.com/news/technology/depin-decentralized-ai-blockchains/",
image: CCNImage,
},
{
link: "https://crypto.news/ai-needs-privacy-and-decentralization-more-than-you-think-opinion/",
image: CryptonewsImage,
},
{
link: "https://alexablockchain.com/libertai-integrates-ltai-token-on-coinbases-base/",
image: AlexaBlockchainImage,
},
];
</script>
2 changes: 2 additions & 0 deletions src/pages/Home/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ import TheresMoreSection from "./TheresMoreSection.vue";
import FeedbacksSection from "./FeedbacksSection.vue";
import RoadmapSection from "./RoadmapSection.vue";
import BallVideoSection from "./BallVideoSection.vue";
import PressSection from "./PressSection.vue";
</script>

<template>
<Hero />
<PartnersSection />
<PressSection />
<ChatPreviewSection />
<OpenSourceModelsSection />
<AICustomizationSection />
Expand Down

0 comments on commit c08c553

Please sign in to comment.