diff --git a/index.html b/index.html index 3a90f17..433e430 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - + Dezh diff --git a/public/Noisy-Background.svg b/public/Noisy-Background.svg new file mode 100644 index 0000000..b06a745 --- /dev/null +++ b/public/Noisy-Background.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/fav-icon.svg b/public/fav-icon.svg new file mode 100644 index 0000000..28af339 --- /dev/null +++ b/public/fav-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/icons/Pointer.tsx b/src/assets/icons/Pointer.tsx deleted file mode 100644 index 7910568..0000000 --- a/src/assets/icons/Pointer.tsx +++ /dev/null @@ -1,96 +0,0 @@ -import { IconProps } from "types/global"; - -export const PointerIcon = ({ className }: IconProps) => { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -}; diff --git a/src/components/Home/Companies.tsx b/src/components/Home/Companies.tsx index 15c5c4d..3bf5409 100644 --- a/src/components/Home/Companies.tsx +++ b/src/components/Home/Companies.tsx @@ -3,27 +3,29 @@ import companiesData from "../../../data/companies.json"; const Companies = () => { return ( -
+

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

-
+
{companiesData.map((company) => ( - + {company.name} {company.name} ))}
-
+
); }; 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 ( -
+
@@ -26,6 +26,6 @@ export default function JoinCommunity() { Join Dezh on Discord
-
+
); } 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() { - + 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", }, ];