Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #173

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 2 additions & 3 deletions src/components/HowItWorksPage/EconomyFlow/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Image from "next/image";
import { allBgImg, demmortalBlastFrame } from "../../../store/img";
import { allBgImg, demmortalOPFrame } from "../../../store/img";
import { motion } from "framer-motion";
import { useEffect, useRef, useState } from "react";

Expand Down Expand Up @@ -31,7 +31,6 @@ const EconomyFlow: React.FC = () => {
return (
<div
className="flex flex-col justify-between items-center h-full w-full relative z-100"
id="cards"
>
<div className="absolute top-0 left-0 w-full h-[7.5rem] bg-gradient-to-b from-[#04050E] via-transparent to-transparent z-[1]" />
<div className="absolute bottom-0 left-0 w-full h-[7.5rem] bg-gradient-to-t from-[#04050E] via-transparent to-transparent z-[1]" />
Expand Down Expand Up @@ -63,7 +62,7 @@ const EconomyFlow: React.FC = () => {
>
<Image
alt="dedogmadao background"
src={demmortalBlastFrame}
src={demmortalOPFrame}
width={1862}
height={1169}
quality={100}
Expand Down
12 changes: 7 additions & 5 deletions src/components/HowItWorksPage/GoldenPoint/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const GoldenPoint: React.FC = () => {
return (
<motion.div className="flex flex-col justify-center items-center z-100 px-5 pt-10">
<motion.h1 className="text-center text-[1.75rem] font-bold">
Demmortal Treasure is more than just a
Demmortal Treasure goes beyond a
<motion.span className="text-primary-500"> Collectible</motion.span>
</motion.h1>
<motion.p
Expand All @@ -17,7 +17,7 @@ const GoldenPoint: React.FC = () => {
animate={controls}
className="text-[1.25rem] font-extralight flex gap-x-1.5 justify-center flex-wrap"
>
{"It's a no-loss lottery powered by BLAST native yield, offering a self-sustaining economy through NFT ownership!"
{"Its a no-loss lottery baked by anti-rug features from DDD Launchpad, offering a self-sustaining economy through NFT ownership on Optimism"
.split(" ")
.map((word, index) => {
return (
Expand All @@ -28,11 +28,13 @@ const GoldenPoint: React.FC = () => {
index === 3 ||
index === 6 ||
index === 7 ||
index === 8) &&
index === 9 ||
index === 10 ||
index === 19) &&
"font-semibold"
} ${
(index === 6 || index === 7 || index === 8) &&
"text-[#FCF533]"
(index === 9 || index === 10 || index === 19) &&
"text-[#FF0420]"
}`}
>
{word}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const ToRoadmapAction: React.FC = () => {
<Link href={"/roadmap"} scroll={false}>
<button
className="px-5 py-3 mt-11 bg-primary-500 hover:bg-primary-900/80
text-neutral-900 hover:text-neutral-50 rounded-full text-small-bold flex gap-x-2
duration-500 border-2 border-transparent hover:border-primary-500 stroke-black hover:stroke-white"
text-neutral-50 hover:text-neutral-50 rounded-full text-small-bold flex gap-x-2
duration-500 border-2 border-transparent hover:border-primary-500 stroke-white hover:stroke-white"
>
<span>Roadmap Document</span>
<span className="animate-bounceX w-2 aspect-[10/17] mt-1">
Expand Down
2 changes: 1 addition & 1 deletion src/components/RoadMapPage/RoadItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const RoadItem: React.FC<props> = ({
}`}
>
<AngleRightSVG
stroke="#FFF66F"
stroke="#FF0420"
width={10}
height={17}
fill="none"
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Header/ConnectWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ConnectWallet: React.FC = () => {
onHoverStart={() => setIsHovered(true)}
onHoverEnd={() => setIsHovered(false)}
onClick={walletModalClickHandler}
className="w-[8.125rem] h-10 z-50 text-sm text-black font-bold cursor-pointer pointer-events-auto flex justify-center items-center text-center
className="w-[8.125rem] h-10 z-50 text-sm text-white font-bold cursor-pointer pointer-events-auto flex justify-center items-center text-center
absolute top-[2rem] right-[4.5rem] bg-primary-500 hover:bg-primary-700 rounded-full"
>
<div className="relative w-full h-full flex justify-center items-center">
Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Header: React.FC = () => {
return <EachLink key={headLink.ref} headLink={headLink} />;
})}
</motion.ul>
<a
{/* <a
href={gitbookLink}
target="_blank"
className="z-50 pointer-events-auto absolute top-[2rem] right-[16rem] px-2 sm:w-[8.5rem] h-10 rounded-full bg-neutral-600 text-white text-sm font-bold
Expand All @@ -63,7 +63,7 @@ const Header: React.FC = () => {
<socialSVGs.GitBookSVG width={26} />
</span>
<span className="hidden sm:block">Litepaper</span>
</a>
</a> */}
<a
href={discordLink}
target="_blank"
Expand Down
15 changes: 5 additions & 10 deletions src/store/allData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ export const faqData: faqType[] = [
question: "How to get whitelisted?",
answer: (
<>
- Blast stakers have priority (more details will be announced soon)
<br />
- By being an active member of our community.
<br />- Winners of the challenges are announced in DDD discord.
</>
Expand Down Expand Up @@ -312,7 +310,7 @@ export const teamDataLvl2: teamCardType[] = [
image: teamImg[4],
desc: "Floki BB is a software engineer and has been in the Blockchain filed since 2016. He has worked as a Blockchain integration engineer and have been involved in the Ethereum ecosystem since 2018. An example of his remarkable work is contributing to solidity language compiler and work as DAPP engineer in couple other projects.",
link: [
{ href: flokiBBSocial.twitter, icon: <Twitter /> },
{ href: flokiBBSocial.linkedin, icon: <Linkedin /> },
{ href: flokiBBSocial.github, icon: <Github /> },
],
},
Expand Down Expand Up @@ -1420,11 +1418,10 @@ export const roadDataQ1: roadDataType[] = [
];
export const roadDataQ2: roadDataType[] = [
{
title: "Integrating Blast native token to prizes",
title: "Integrating boost tokens to prize pools",
desc: (
<>
Providing more prizes for users by adding Blast native token as a new
prize pool
Providing more prizes for users by adding native tokens of the chains and grant prizes as a new prize pool
</>
),
size: 1,
Expand Down Expand Up @@ -1526,8 +1523,7 @@ export const benefitsData: benefitType[] = [
and exiting the game.
</>,
<>
The team takes nothing from mint money and only relies on the 50% of
yield generated from Blast.
The team takes nothing from mint money and only relies on the share from generated yields of the pool.
</>,
],
},
Expand All @@ -1540,8 +1536,7 @@ export const benefitsData: benefitType[] = [
secondary sales and burn tax.
</p>,
<p>
<span className="font-semibold">2- Guaranteed </span> Prize Pool Fueled
by Blast native yield.
<span className="font-semibold">2- Guaranteed </span> Prize Pool Fueled by yield system.
</p>,
<>
Note: GPP guarantees an ever-growing treasury and a minimum weekly +
Expand Down
4 changes: 2 additions & 2 deletions src/store/allLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export const georgeSocial = {

//flokiBB
export const flokiBBSocial = {
twitter:"https://twitter.com/batenieth",
github:"https://github.com/FlokiBB/"
github:"https://github.com/irnb",
linkedin:"https://www.linkedin.com/in/irnb/"
}

//katy
Expand Down
Binary file removed src/store/images/demmortal-blast-frame.png
Binary file not shown.
Binary file added src/store/images/demmortal-op-frame.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/store/img.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,5 @@ import auctionHera from './images/auctions/hera.png';
import auctionPoseidon from './images/auctions/poseidon.png';
export const auctionImgs = [auctionAphrodite, auctionArtemis, auctionHades, auctionHecate, auctionHera, auctionPoseidon, auctionArtemis, auctionAphrodite,auctionHades,auctionHera];

import demmortalBlastFrame from './images/demmortal-blast-frame.png';
export {demmortalBlastFrame}
import demmortalOPFrame from './images/demmortal-op-frame.png';
export {demmortalOPFrame}
21 changes: 10 additions & 11 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,16 @@ module.exports = {
pink: colors.pink,
rose: colors.rose,
primary: {
100: "#fffde2",
200: "#fffbc5",
300: "#fffaa9",
400: "#fff88c",
500: "#fff66f",
600: "#ccc559",
700: "#999443",
800: "#66622c",
900: "#333116"
},

100: "#ffcdd2",
200: "#ff9ba6",
300: "#ff6879",
400: "#ff364d",
500: "#ff0420",
600: "#cc031a",
700: "#990213",
800: "#66020d",
900: "#330106",
},
secondary: {
50: "#ECE7FC",
100: "#D0C2F9",
Expand Down
Loading