diff --git a/landing_page/public/icons/LANDVER_LOGO_WHITE.svg b/landing_page/public/icons/LANDVER_LOGO_WHITE.svg new file mode 100644 index 00000000..9ae949e4 --- /dev/null +++ b/landing_page/public/icons/LANDVER_LOGO_WHITE.svg @@ -0,0 +1,286 @@ + + + diff --git a/landing_page/src/app/components/Benefits.tsx b/landing_page/src/app/components/Benefits.tsx index 52f3760b..14e724dc 100644 --- a/landing_page/src/app/components/Benefits.tsx +++ b/landing_page/src/app/components/Benefits.tsx @@ -41,7 +41,7 @@ const Benefits = () => { }, ]; return ( -
Experience The Unique Benefits of Landver diff --git a/landing_page/src/app/components/Footer.tsx b/landing_page/src/app/components/Footer.tsx index 2562b407..3ddee095 100644 --- a/landing_page/src/app/components/Footer.tsx +++ b/landing_page/src/app/components/Footer.tsx @@ -1,12 +1,12 @@ import React from "react"; import { FaTelegram, FaGithub, FaTwitter } from "react-icons/fa"; - +import Link from "next/link"; const Footer = () => { const links = [ - { name: "Home", href: "/" }, - { name: "Experience", href: "/experience" }, - { name: "About us", href: "/about" }, - { name: "Contact", href: "/contact" }, + { name: "Home", href: "#" }, + { name: "Experience", href: "#experience" }, + { name: "About us", href: "#about" }, + { name: "Contact", href: "#contact" }, ]; const socialLinks = [ @@ -40,15 +40,17 @@ const Footer = () => {