@@ -179,7 +47,6 @@ export default function About() {
- {/* {" "} */}
What is Chainlib?
@@ -195,7 +62,6 @@ export default function About() {
- {/* {" "} */}
Why Chainlib Exists?
@@ -294,7 +160,6 @@ export default function About() {
- {/* Smart Contracts Feature */}
@@ -305,7 +170,6 @@ export default function About() {
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
- {/*
*/}
*/}
ChainLib
@@ -674,7 +535,6 @@ export default function About() {
- {/* Add more social icons as needed */}
@@ -722,7 +581,6 @@ export default function About() {
Books
- {/* Ensure these links point to the correct pages */}
- {/* Copyright */}
© {new Date().getFullYear()} ChainLib. All rights reserved.
diff --git a/src/app/landing-page/page.tsx b/src/app/landing-page/page.tsx
index e11c953..f932ce9 100644
--- a/src/app/landing-page/page.tsx
+++ b/src/app/landing-page/page.tsx
@@ -1,6 +1,3 @@
-import Image from "next/image";
-import Link from "next/link";
-import Image4 from "@/assets/Images/ImageLogo.png";
import Hero from "@/components/landingpage/Hero";
import Tagline from "@/components/landingpage/Tagline";
import Nft from "@/components/landingpage/Nft";
@@ -8,67 +5,17 @@ import Authors from "@/components/landingpage/Authors";
import Banner from "@/components/landingpage/Banner";
import Community from "@/components/landingpage/Community";
import Partener from "@/components/landingpage/Partener";
-import Footer from "@/components/landingpage/Footer";
export default function landing() {
return (
- <>
-
-
-
-
-
- {/*
*/}
-
- ChainLib
-
-
-
-
-
- {/* Desktop Navigation */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- >
+ <>
+
+
+
+
+
+
+
+ >
);
}
\ No newline at end of file
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 33feb3d..fb17e01 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,6 +1,8 @@
import type { Metadata } from "next";
import "./globals.css";
+import NavBar from "@/components/landingpage/NavBar";
import { Providers } from "@/components/blockchain/Providers";
+import Footer from "@/components/landingpage/Footer";
export const metadata: Metadata = {
title: "ChainLib",
@@ -15,7 +17,9 @@ export default function RootLayout({
return (
+
{children}
+
);
diff --git a/src/components/landingpage/NavBar.tsx b/src/components/landingpage/NavBar.tsx
new file mode 100644
index 0000000..24444f8
--- /dev/null
+++ b/src/components/landingpage/NavBar.tsx
@@ -0,0 +1,56 @@
+import React from 'react'
+import Image from "next/image";
+import Link from "next/link";
+import Image4 from "@/assets/Images/ImageLogo.png";
+
+const NavBar = () => {
+ return (
+
+
+
+
+
+
+ ChainLib
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+export default NavBar
\ No newline at end of file