Before Width: | Height: | Size: 445 KiB |
Before Width: | Height: | Size: 605 KiB |
After Width: | Height: | Size: 134 KiB |
Before Width: | Height: | Size: 618 KiB |
After Width: | Height: | Size: 238 KiB |
After Width: | Height: | Size: 564 KiB |
After Width: | Height: | Size: 400 KiB |
After Width: | Height: | Size: 377 KiB |
Before Width: | Height: | Size: 220 KiB |
After Width: | Height: | Size: 270 KiB |
After Width: | Height: | Size: 85 KiB |
@ -1,5 +1,3 @@ |
|||||||
@import "tailwindcss/base"; |
@tailwind base; |
||||||
|
@tailwind components; |
||||||
@import "tailwindcss/components"; |
@tailwind utilities; |
||||||
|
|
||||||
@import "tailwindcss/utilities"; |
|
@ -1,7 +1,34 @@ |
|||||||
|
import robotLogo from "../../assets/images/logo-robot.png"; |
||||||
|
|
||||||
type Props = {}; |
type Props = {}; |
||||||
|
|
||||||
const Footer = (props: Props) => { |
const Footer = (props: Props) => { |
||||||
return <div className="container mx-auto bg-white">Footer</div>; |
return ( |
||||||
|
<div className="container mx-auto flex justify-between text-white py-12"> |
||||||
|
<div className="md:w-1/4 flex gap-2 items-center"> |
||||||
|
<div className="bg-white rounded-full overflow-hidden p-1"> |
||||||
|
<img |
||||||
|
src={robotLogo} |
||||||
|
className="w-10 transition-all duration-150 rounded-full" |
||||||
|
alt="" |
||||||
|
/> |
||||||
|
</div> |
||||||
|
<h4 className="text-xl transition-all duration-150 text-white uppercase font-bold"> |
||||||
|
SGPT |
||||||
|
</h4> |
||||||
|
</div> |
||||||
|
<div className="md:w-1/4 flex gap-2 items-center"> |
||||||
|
Copyright 2023 SGPT |
||||||
|
</div> |
||||||
|
|
||||||
|
<div className="md:w-2/5 flex justify-between items-center"> |
||||||
|
<p>NFT Systems</p> |
||||||
|
<p>Team</p> |
||||||
|
<p>Privacy Policy</p> |
||||||
|
<p>Terms & Conditions</p> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
); |
||||||
}; |
}; |
||||||
|
|
||||||
export default Footer; |
export default Footer; |
||||||
|
@ -0,0 +1,87 @@ |
|||||||
|
import tokenomicChart from "../../../assets/images/tokenomic-chart.png"; |
||||||
|
|
||||||
|
type Props = {}; |
||||||
|
|
||||||
|
const tokenomics = [ |
||||||
|
{ |
||||||
|
title: "Liquidity - 5% 1,000,000 SGPT", |
||||||
|
description: " ", |
||||||
|
color: "bg-[#86eae9]", |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: "Private Sale - 17% 3,400,000 SGPT", |
||||||
|
description: " ", |
||||||
|
color: "bg-[#5dbdd3]", |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: "Stacking & Farming - 15% 3,000,000 SGPT", |
||||||
|
description: " ", |
||||||
|
color: "bg-[#4591b8]", |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: "Marketing & Promotion - 15% 3,000,000 SGPT", |
||||||
|
description: " ", |
||||||
|
color: "bg-[#3b6696]", |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: "Public Sale - 14% 2,800,000 SGPT", |
||||||
|
description: " ", |
||||||
|
color: "bg-[#353c6e]", |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: "Reward & Q&A - 10% 2,000,000 SGPT", |
||||||
|
description: " ", |
||||||
|
color: "bg-[#705788]", |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: "Advisor - 10% 2,000,000 SGPT", |
||||||
|
description: " ", |
||||||
|
color: "bg-[#a5769e]", |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: "Treasury - 14% 2,800,000 SGPT", |
||||||
|
description: " ", |
||||||
|
color: "bg-[#d59ab3]", |
||||||
|
}, |
||||||
|
]; |
||||||
|
|
||||||
|
const TokenomicsSection = (props: Props) => { |
||||||
|
return ( |
||||||
|
<div className="w-full bg-white py-24" id="tokenomics"> |
||||||
|
<div className="container mx-auto"> |
||||||
|
<h1 className="text-5xl font-bold text-center text-black mb-20"> |
||||||
|
Tokenomics |
||||||
|
</h1> |
||||||
|
|
||||||
|
<div className="w-full flex flex-col md:flex-row"> |
||||||
|
<div className="md:w-1/2"> |
||||||
|
<img src={tokenomicChart} alt="" /> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div className="md:w-1/2"> |
||||||
|
<ul className="flex flex-col items-end justify-center h-full gap-3 px-3"> |
||||||
|
{tokenomics.map((item, index) => { |
||||||
|
return ( |
||||||
|
<li |
||||||
|
key={index} |
||||||
|
className={`text-center w-full md:w-2/3 bg-slate-200 py-3 relative`} |
||||||
|
> |
||||||
|
<div |
||||||
|
className={`absolute h-full top-0 w-2 ${item.color}`} |
||||||
|
></div> |
||||||
|
<h4 className="text-xl font-bold text-gray-700"> |
||||||
|
{item.title} |
||||||
|
</h4> |
||||||
|
<p className="text-gray-500">{item.description}</p> |
||||||
|
</li> |
||||||
|
); |
||||||
|
})} |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default TokenomicsSection; |