Skip to content

Commit

Permalink
fix: updated favico, updated metadata and fixed broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
Solomonsolomonsolomon committed Dec 18, 2024
1 parent 713932a commit 348fc2c
Show file tree
Hide file tree
Showing 7 changed files with 352 additions and 18 deletions.
286 changes: 286 additions & 0 deletions landing_page/public/icons/LANDVER_LOGO_WHITE.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion landing_page/src/app/components/Benefits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Benefits = () => {
},
];
return (
<div className="mb-10">
<div className="mb-10" id="experience">
<div className="flex flex-col justify-center items-center gap-1">
<P classname="capitalize text-center mt-10" size="h4">
Experience The Unique Benefits of Landver
Expand Down
16 changes: 9 additions & 7 deletions landing_page/src/app/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down Expand Up @@ -40,15 +40,17 @@ const Footer = () => {

<div className="flex justify-center items-center gap-6 mb-6">
{socialLinks.map((social) => (
<a
<Link
key={social.label}
href={social.href}
scroll={false}

className="hover:text-gray-900 transition-colors"
aria-label={social.label}
target="_blank"
>
<social.icon className="w-5 h-5" />
</a>
</Link>
))}
</div>

Expand Down
15 changes: 9 additions & 6 deletions landing_page/src/app/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ const NavBar = () => {
<div className="flex items-center gap-2">
<Image src="/images/logo.svg" alt="logo" height={100} width={100} />
<nav className="md:flex items-center gap-6 text-sm hidden">
<Link href="/" className="hover:text-gray-600 transition-colors text-xs">
<Link href="https://demo.landver.net/" className="hover:text-gray-600 transition-colors text-xs" target="_blank">
Register Land
</Link>
<Link href="/" className="hover:text-gray-600 transition-colors text-xs">
<Link href="https://demo.landver.net/" className="hover:text-gray-600 transition-colors text-xs"target="_blank">
Inspect Land
</Link>
<Link href="/" className="hover:text-gray-600 transition-colors text-xs">
<Link href="https://demo.landver.net" className="hover:text-gray-600 transition-colors text-xs" target="_blank">
Buy Land
</Link>
</nav>
Expand Down Expand Up @@ -55,21 +55,24 @@ const NavBar = () => {
<div className="absolute top-full left-0 right-0 bg-white border-t md:hidden">
<nav className="flex flex-col p-4 gap-4">
<Link
href="/"
href="https://demo.landver.net"
target="_blank"
className="p-2 hover:bg-gray-50 rounded-lg transition-colors"
onClick={() => setIsMenuOpen(false)}
>
Register Land
</Link>
<Link
href="/"
href="https://demo.landver.net"
target="_blank"
className="p-2 hover:bg-gray-50 rounded-lg transition-colors"
onClick={() => setIsMenuOpen(false)}
>
Inspect Land
</Link>
<Link
href="/"
href="https://demo.landver.net"
target="_blank"
className="p-2 hover:bg-gray-50 rounded-lg transition-colors"
onClick={() => setIsMenuOpen(false)}
>
Expand Down
2 changes: 1 addition & 1 deletion landing_page/src/app/components/NewsLetterCTA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import P from "./P/P";

const NewsLetterCTA = () => {
return (
<section className="flex justify-center items-center gap-3 relative py-6 px-4 sm:px-8 bg-[#eae8fb] ">
<section className="flex justify-center items-center gap-3 relative py-6 px-4 sm:px-8 bg-[#eae8fb] " id="contact" >
<div className="w-full max-w-[500px] relative flex justify-center items-center gap-3">
<P classname="text-[#6e62e5] text-center text-[16px] font-bold mb-3">
Newsletter
Expand Down
2 changes: 1 addition & 1 deletion landing_page/src/app/components/WhyChooseLandver.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const WhyChooseLandver = () => {
});

return (
<div className="grid justify-center place-content-center place-items-center gap-4 p-4 ">
<div className="grid justify-center place-content-center place-items-center gap-4 p-4 " id="about">
<P size="h4" classname="text-center">
Our Unique Offerings
</P>
Expand Down
47 changes: 45 additions & 2 deletions landing_page/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,53 @@ const manrope = Manrope({
// });

export const metadata: Metadata = {
title: "Landver",
description: "Landver:Onchain land Management",
title: "Landver | Onchain Land Management System",
description: "Landver is an innovative onchain land management platform offering seamless land tracking, transactions, and property data verification. Powered by blockchain technology for transparency and efficiency.",
icons: {
icon: '/icons/LANDVER_LOGO_WHITE.svg',
apple: '/icons/LANDVER_LOGO_WHITE.svg',
},
keywords: [
"Landver",
"onchain land management",
"blockchain land management",
"property management system",
"real estate technology",
"land tracking",
"blockchain property verification",
"digital land records",
],
openGraph: {
title: "Landver | Onchain Land Management System",
description: "Manage your land and property seamlessly with Landver, a blockchain-powered platform for land tracking, transactions, and property data verification.",
url: "https://www.landver.net",
siteName: "Landver",
images: [
{
url: "/icons/LANDVER_LOGO_WHITE.svg",
width: 1200,
height: 630,
alt: "Landver Logo",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Landver | Onchain Land Management System",
description: "Landver provides innovative blockchain-powered solutions for efficient and transparent land management.",
images: ["/images/logo.svg",'images/LANDVER_BLACK.jpg','/icons/LANDVER_LOGO_WHITE.svg'],
},
authors: [
{ name: "Landver Team", url: "https://www.landver.net" },
],
robots: {
index: true,
follow: true,
},
};


export default function RootLayout({
children,
}: Readonly<{
Expand Down

0 comments on commit 348fc2c

Please sign in to comment.