diff --git a/public/clients/centrifuge.png b/public/clients/centrifuge.png
new file mode 100644
index 0000000..56d6a71
Binary files /dev/null and b/public/clients/centrifuge.png differ
diff --git a/src/app/globals.css b/src/app/globals.css
index 46947be..7d4cb7f 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -63,4 +63,7 @@
body {
@apply bg-background text-foreground;
}
+ html {
+ scroll-behavior: smooth;
+ }
}
\ No newline at end of file
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 8ac6789..f35143c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -31,12 +31,19 @@ export const metadata: Metadata = {
referrer: "origin",
creator: "Electisec Team",
robots: "follow, index",
+ icons: {
+ icon: [
+ { url: "/favicon.ico", sizes: "any" },
+ { url: "/icon.png", sizes: "32x32", type: "image/png" },
+ ],
+ apple: "/icon.png",
+ },
openGraph: {
type: "website",
url: "https://electisec.com",
title: "Electisec",
description:
- "Electisec is focused on smart contracts and zero-knowledge security: auditing, research, and increasingly tooling. We launched late 2020 to help make DeFi more secure and have since then secured contracts holding billions in TVL.",
+ "Electisec is focused on smart contracts and zero-knowledge security: auditing, research, and increasingly tooling. We launched to help make DeFi more secure and have since then secured contracts holding billions in TVL.",
siteName: "Electisec",
images: [
{
@@ -44,11 +51,11 @@ export const metadata: Metadata = {
width: 1200,
height: 630,
},
- // {
- // url: "https://electisec.com/icon.png",
- // width: 400,
- // height: 400,
- // },
+ {
+ url: "https://electisec.com/icon.png",
+ width: 400,
+ height: 400,
+ },
],
},
twitter: {
diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx
index 6229eb8..cc84440 100644
--- a/src/app/team/page.tsx
+++ b/src/app/team/page.tsx
@@ -37,7 +37,23 @@ export default function MembersPage() {
- We launched late 2020 to help make DeFi more secure and have since
+ We launched late 2021 to help make DeFi more secure and have since
then secured contracts holding billions in TVL.
diff --git a/src/modules/Members/1-Core/index.tsx b/src/modules/Members/1-Core/index.tsx index fe84c19..e2ad072 100644 --- a/src/modules/Members/1-Core/index.tsx +++ b/src/modules/Members/1-Core/index.tsx @@ -1,5 +1,6 @@ import { core } from "../Data/core"; import Image from "next/image"; + export function Template({ title, members, @@ -11,9 +12,25 @@ export function Template({ avatar?: string; }[]; }) { + const slug = title.toLowerCase().replace(/\s+/g, '-').replace(/[^\w\-]/g, ''); + + const handleLinkClick = () => { + const url = new URL(window.location.href); + url.hash = slug; + window.history.pushState({}, '', url.toString()); + }; + return ( -