diff --git a/index.html b/index.html
index 3a90f17..433e430 100644
--- a/index.html
+++ b/index.html
@@ -3,7 +3,7 @@
+
Our Partners
We are working with industry leading Companies over the crypto world
- together to boost the process of our mission in decentralized
- web
+ together to boost the process of our mission in decentralized web
-
+
);
};
diff --git a/src/components/Home/JoinCommunity.tsx b/src/components/Home/JoinCommunity.tsx
index 1aa3d27..f88e613 100644
--- a/src/components/Home/JoinCommunity.tsx
+++ b/src/components/Home/JoinCommunity.tsx
@@ -3,7 +3,7 @@ import Link from "components/ui/Link";
export default function JoinCommunity() {
return (
-
+
);
}
diff --git a/src/index.css b/src/index.css
index 17e2bfc..ef286a8 100644
--- a/src/index.css
+++ b/src/index.css
@@ -6,19 +6,28 @@
@layer base {
* {
+ scroll-behavior: smooth;
@apply border-secondary;
}
+ .noisy-bg {
+ background-image: url("/public/Noisy-Background.svg");
+
+ }
+
:root {
--primary: #FF4800;
--secondary: #1D1D1D;
--background: #E2DDD6;
-
+ word-spacing: -2px;
font-family: "Neue Machina", system-ui,
sans-serif;
color-scheme: light dark;
color: var(--secondary);
background-color: var(--background);
+ background-image: url("/public/Noisy-Background.svg");
+ background-size: cover;
+ background-position: center;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
diff --git a/src/layout/Footer.tsx b/src/layout/Footer.tsx
index 49de58f..6f8d767 100644
--- a/src/layout/Footer.tsx
+++ b/src/layout/Footer.tsx
@@ -2,6 +2,7 @@ import { Logo, MessageIcon } from "assets/icons";
import SocialMediaLinks from "components/SocialLinks";
export function Footer() {
+ const year = new Date().getFullYear();
return (
-
© 2024 Dezh.tech, All Rights Reserved
+
© {year} Dezh.tech, All Rights Reserved
);
-
}
diff --git a/src/layout/Header.tsx b/src/layout/Header.tsx
index 1e9e8af..1f53715 100644
--- a/src/layout/Header.tsx
+++ b/src/layout/Header.tsx
@@ -13,11 +13,13 @@ export function Header() {
{links.map((link, key) => (
- {link.name}
+
+ {link.name}
+
))}
-
+
Contact us
diff --git a/src/layout/links.ts b/src/layout/links.ts
index d6642c0..ba44823 100644
--- a/src/layout/links.ts
+++ b/src/layout/links.ts
@@ -5,15 +5,11 @@ type LinkT = {
export const links: LinkT[] = [
{
- name: "Our Project",
- link: "#our-project",
+ name: "Our Partners",
+ link: "#our-Partners",
},
{
- name: "Services",
- link: "#services",
- },
- {
- name: "About Us",
- link: "#about",
+ name: "Community",
+ link: "#community",
},
];