Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/app/about-us/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ export default function About() {
<Link href="/" className="text-gray-500 hover:text-gray-900">
Home
</Link>
<Link href="/about-us" className="text-blue-600 font-medium">
<Link href="/books" className="text-blue-600 font-medium">
Books
</Link>
<Link href="/about-us" className="text-blue-600 font-medium">
<Link href="/how-it-works" className="text-blue-600 font-medium">
How It Works
</Link>
<Link
href="/books"
href="/about-us"
className="bg-blue-100 px-3 py-1 rounded-full text-gray-500 hover:text-gray-900"
>
About ChainLib
Expand Down Expand Up @@ -589,7 +589,7 @@ export default function About() {
</div>
</div>
<div>
<p className="font-medium font-semibold text-[#000B21]">
<p className="font-semibold text-[#000B21]">
Our Community
</p>
<p className="text-[#0F265C] font-semibold">
Expand Down
51 changes: 51 additions & 0 deletions src/app/landing-page/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
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";
Expand All @@ -10,6 +13,54 @@ import Footer from "@/components/landingpage/Footer";
export default function landing() {
return (
<>
<div className="flex justify-between h-16 items-center">
<div className="flex items-center">
<Link href="/">
<span className="flex items-center cursor-pointer">
<Image
src={Image4}
alt="Logo"
width={24}
height={24}
className="h-9 w-9"
/>
{/* </div> */}
<span className="ml-2 text-[#0F265C] text-lg font-medium">
ChainLib
</span>
</span>
</Link>
</div>

{/* Desktop Navigation */}
<nav className="hidden md:flex space-x-8">
<Link href="/" className="text-gray-500 hover:text-gray-900">
Home
</Link>
<Link href="/books" className="text-gray-500 font-medium hover:text-gray-900">
Books
</Link>
<Link href="/how-it-works" className="text-gray-500 font-medium hover:text-gray-900">
How It Works
</Link>
<Link
href="/about-us"
className="text-gray-500 hover:text-gray-900"
>
About ChainLib
</Link>
</nav>

<div className="hidden md:flex items-center space-x-4">
<button className="bg-gray-100 hover:bg-gray-200 text-gray-800 px-4 py-2 rounded-md text-sm font-medium">
Log In
</button>
<button className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium">
Sign Up
</button>
</div>
</div>

<Hero />
<Tagline />
<Nft />
Expand Down
10 changes: 0 additions & 10 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import React from "react";
import LandingPage from "@/app/landing-page/page";
// import { redirect } from "next/navigation";
import About from "./about-us/page";

export default function Home() {
return (
Expand All @@ -10,14 +8,6 @@ export default function Home() {
<LandingPage />
</div>

<div>
{/* <AnalyticsChart /> */}
<About />
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Sint et, sit
exercitationem repudiandae assumenda veniam reiciendis, doloribus itaque
aperiam aut consectetur, mollitia quo aliquam labore non minus recusandae!
Laboriosam, necessitatibus!
</div>
</>
);
}
Expand Down
Loading