-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f1d7eb
commit c17be7d
Showing
10 changed files
with
59 additions
and
94 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import Image from "next/image"; | ||
|
||
export const Landing = () => { | ||
return ( | ||
<section className="sticky top-0 mx-auto flex h-screen max-w-[1350px] items-center justify-between px-8"> | ||
<div className="space-y-8"> | ||
<h1 className="space-y-3 text-5xl font-semibold tracking-wide lg:text-6xl | ||
xl:text-7xl"> | ||
<span className="block bg-gradient-to-r from-pink-600 to-violet-500 | ||
bg-clip-text text-transparent | ||
">Powered</span> | ||
<span className="block">By Intellect</span> | ||
<span className="block">Driven By Values</span> | ||
</h1> | ||
|
||
<div> | ||
{/* <Button title="Buy Now/> */} | ||
<a className="link">Learn More</a> | ||
</div> | ||
</div> | ||
|
||
<div className="relative hidden h-[450px] w-[450px] transition-all duration-500 | ||
md:inline lg:h-[650px] lg:w-[600px]"> | ||
<Image src='/iphone14.png' layout="fill" objectFit="contain" /> | ||
</div> | ||
|
||
</section> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,30 @@ | ||
|
||
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); | ||
|
||
|
||
|
||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@layer base{ | ||
body{ | ||
@apply font-body text-[#232428] | ||
} | ||
} | ||
|
||
@layer components{ | ||
.headerLink{ | ||
@apply cursor-pointer opacity-75 transition hover:opacity-100; | ||
} | ||
.headerIcon{ | ||
@apply h-6 w-6 cursor-pointer opacity-75 transition hover:opacity-100; | ||
} | ||
.link { | ||
@apply relative cursor-pointer text-lg font-medium before:absolute before:inset-x-0 | ||
before:-bottom-1.5 before:h-0.5 before:origin-left before:scale-x-0 before:transform | ||
before:rounded-bl before:bg-black before:transition-all before:duration-200 | ||
hover:before:scale-x-100; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters