feat: add homepage buttons

This commit is contained in:
Kalidou Diagne
2025-04-08 14:19:19 +03:00
parent 50fb407a12
commit db924ff450
3 changed files with 37 additions and 14 deletions

View File

@@ -85,19 +85,40 @@ export default function IndexPage({ params: { lang } }: any) {
</div>
}
actions={
<Link href={"/projects"} className="flex items-center gap-2 group">
<Button className="w-full sm:w-auto">
<div className="flex items-center gap-1">
<span className="text-base font-medium uppercase">
{common("exploreProjectLibrary")}
</span>
<Icons.arrowRight
fill="white"
className="h-5 duration-200 ease-in-out group-hover:translate-x-2"
/>
</div>
</Button>
</Link>
<div className="flex flex-col lg:flex-row gap-10">
<Link
href={"/research"}
className="flex items-center gap-2 group"
>
<Button className="w-full sm:w-auto">
<div className="flex items-center gap-1">
<span className="text-base font-medium uppercase">
{common("research")}
</span>
<Icons.arrowRight
fill="white"
className="h-5 duration-200 ease-in-out group-hover:translate-x-2"
/>
</div>
</Button>
</Link>
<Link
href={"/projects"}
className="flex items-center gap-2 group"
>
<Button className="w-full sm:w-auto">
<div className="flex items-center gap-1">
<span className="text-base font-medium uppercase">
{common("developmentProjects")}
</span>
<Icons.arrowRight
fill="white"
className="h-5 duration-200 ease-in-out group-hover:translate-x-2"
/>
</div>
</Button>
</Link>
</div>
}
/>

View File

@@ -78,6 +78,8 @@
"noResults": "No results found.",
"noResultsDescription": "Sorry, we couldn't find any results for your search. Please try again with different keywords.",
"exploreProjectLibrary": "Explore Project Library",
"developmentProjects": "Development Projects",
"research": "Research",
"clearAll": "Clear all",
"showProjects": "Show projects",
"filters": "Filters",

View File

@@ -1,6 +1,6 @@
{
"headerTitle": "Privacy + Scaling Explorations",
"headerSubtitle": "Building free resources for people expanding the world of programmable cryptography.",
"headerSubtitle": "PSE is a research and development lab with a mission of making cryptography useful for human collaboration. We build open source tooling with things like zero-knowledge proofs, multiparty computation, homomorphic encryption, Ethereum, and more.",
"whoWeAre": "Who we are",
"whoWeAreDescription": "PSE is a research lab building free tools that expand the world of cryptography.",
"howToPlugIn": "How to plug in",