-
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
Showing
17 changed files
with
166 additions
and
52 deletions.
There are no files selected for viewing
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,3 @@ | ||
[ZoneTransfer] | ||
ZoneId=3 | ||
HostUrl=about:internet |
File renamed without changes
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
public/images/background/dark-teal-1920-x-1080-background.webp:Zone.Identifier
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,3 @@ | ||
[ZoneTransfer] | ||
ZoneId=3 | ||
HostUrl=about:internet |
Binary file not shown.
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
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
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,13 @@ | ||
import VideoBackground from "./VideoBackground"; | ||
import TrustedByUsers from "./TrutedUsers"; | ||
import ProjectDemo from "./ProjectDemo"; | ||
|
||
export default function Home() { | ||
return ( | ||
<> | ||
<VideoBackground /> | ||
<TrustedByUsers /> | ||
<ProjectDemo /> | ||
</> | ||
); | ||
} |
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,40 @@ | ||
|
||
export default function ProjectDemo() { | ||
return ( | ||
<> | ||
<div className="hero bg-base-100 min-h-screen"> | ||
<div className="hero-content flex-col lg:flex-row-reverse"> | ||
|
||
<div> | ||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/HoOt8NeLbv0?si=Iqey3wANeQ-5WGfU" | ||
title="YouTube video player" | ||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" > | ||
</iframe> | ||
</div> | ||
<div> | ||
<h2 className='text-base lg:text-xl font-thin landing-pg-intro-txt leading-loose mb-5 animate-slideDown'>Project Demo</h2> | ||
<p className="text-xl animate-slideUp text-justify">A decentralized escrow platform where parties can engage in | ||
agreements with full assurance that the terms of the deal will be met before any funds are released. Using smart | ||
contracts deployed on the Base blockchain, a secure environment for deal-making is assured. | ||
</p> | ||
<div> | ||
<h1 className=" text-lg text-teal-300 mt-5">Key Features of SealedTrust:</h1> | ||
<ul className="text-sm indent-8 "> | ||
<li className="text-sm animate-slideUp text-teal-300 text-justify break-words leading-8">✓ Tamper-proof</li> | ||
<li className="text-sm animate-slideUp text-teal-300 text-justify break-words leading-8">✓ Trustless Escrow</li> | ||
<li className="text-sm animate-slideUp text-teal-300 text-justify break-words leading-8">✓ Fraud Protection</li> | ||
<li className="text-sm animate-slideUp text-teal-300 text-justify break-words leading-8">✓ Transparent Process</li> | ||
<li className="text-sm animate-slideUp text-teal-300 text-justify break-words leading-8">✓ User-Friendly Interface</li> | ||
<li className="text-sm animate-slideUp text-teal-300 text-justify break-words leading-8">✓ Global Accessibility</li> | ||
<li className="text-sm animate-slideUp text-teal-300 text-justify break-words leading-8">⨀ Dispute Resolution via Multisig Wallet</li> | ||
</ul> | ||
</div> | ||
<p className="py-6"></p> | ||
<button className="btn btn-outline btn-accent w-96 glass">Secure Your transaction now!</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</> | ||
); | ||
} |
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,10 @@ | ||
|
||
export default function TrustedByUsers() { | ||
return ( | ||
<> | ||
<div className="justify-center w-full drop-shadow-2xl"> | ||
<button className="btn w-full glass">Comming soon</button> | ||
</div> | ||
</> | ||
); | ||
} |
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,45 @@ | ||
import React from 'react'; | ||
|
||
export default function VideoBackground() { | ||
return ( | ||
<div className="relative w-full h-screen overflow-hidden"> | ||
<video | ||
src="/videos/bg.mp4" // Ensure the path is correct relative to your public directory | ||
autoPlay | ||
loop | ||
muted | ||
className="absolute top-0 left-0 w-full h-full object-cover" // Make it cover the entire div | ||
/> | ||
<div className="absolute inset-0 bg-black opacity-25" /> {/* Optional dark overlay */} | ||
<div className="absolute inset-0 bg-gradient-to-t from-transparent to-black pointer-events-none" /> {/* Gradient overlay */} | ||
<div className="absolute inset-0 blur-2xl" /> {/* Blurry edges */} | ||
|
||
<div className="relative z-10 flex items-center justify-center h-full text-white"> | ||
|
||
<div className='flex-column'> | ||
<h2 className='text-base lg:text-2xl font-thin landing-pg-intro-txt leading-loose mb-10 animate-slideDown'>Your Number one platform for trustless deal-making.</h2> | ||
<h1 className="text-4xl font-bold lg:text-7xl mb-10 animate-slideUp">Ensuring funds are only released</h1> | ||
<h1 className="text-4xl font-bold mb-10 lg:text-7xl text-teal-300 animate-slideUp">when both parties meet the agreement</h1> | ||
|
||
<div className="flex-column lg:flex gap-10 mt-6"> | ||
<button className="btn btn-outline btn-accent px-10 w-96 animate-slideUp"><svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
className="h-6 w-6" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
stroke="currentColor"> | ||
<path | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="2" | ||
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" /> | ||
</svg></button> | ||
<button className="btn glass w-96 animate-slideUp">Book A Demo</button> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
); | ||
} |
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