mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-04-23 03:01:03 -04:00
feat: add homepage buttons
This commit is contained in:
@@ -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>
|
||||
}
|
||||
/>
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user