Skip to content

Commit 2facf46

Browse files
Merge pull request #45 from Highlander-maker/development
Development
2 parents 36f5916 + 9b95ae8 commit 2facf46

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

components/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import Link from "next/link";
22

33
function Header() {
44
return (
5-
<header className="flex h-20 justify-between bg-gray-100 p-5 mx-auto">
5+
<header className="flex justify-between bg-gray-100 p-5">
66
<div className="flex items-center space-x-5">
77
<Link href="/">
88
<img
9-
className="w-40 h-16 object-contain cursor-pointer"
9+
className="w-44 object-contain cursor-pointer"
1010
src="/chaintool--header-logo.svg"
1111
alt=""
1212
/>

pages/contact.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Layout from "../components/Layout";
55
function contact() {
66
return (
77
<Layout>
8-
<div>
8+
<div className="bg-slate-500 grid grid-cols-1 sm:grid-col-2 lg:grid-cols-3 gap-3 md:gap-4 p-5 md:p-6">
99
<img src="/comingsoon.png" alt="" />
1010
</div>
1111
</Layout>

pages/index.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ import Header from "../components/Header";
66

77
export default function Home() {
88
return (
9-
<div className="max-w-full mx-auto">
9+
<div className="">
1010
<Head>
1111
<title>Chaintools.tech</title>
1212
<link rel="icon" href="chaintools-logo-clear.svg" />
1313
</Head>
1414

1515
<Header />
16-
<div className="flex justify-between items-center bg-cyan-500 border-black py-10 lg:py-0">
16+
17+
18+
<div className="flex justify-between items-center border-black py-10 lg:py-0">
1719
<div className="px-10 space-y-20">
1820
<h1 className="text-6xl max-w-xl font-semibold">
1921
<p className="text-gray-800 font-bold text-6xl pb-6">
@@ -30,7 +32,7 @@ export default function Home() {
3032

3133

3234
<img
33-
className="md:inline-flex h-45 lg:-full max-w-2xl"
35+
className="hidden md:inline-flex h-32 lg:h-full"
3436
src="chaintools-logo-black.svg"
3537
alt=""
3638
/>

public/chaintools-logo-clear.svg

Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)