├── public
├── robots.txt
├── favicon.ico
├── logo192.png
├── logo512.png
├── Weirdos NFT-screenshot.jpg
├── manifest.json
└── index.html
├── src
├── assets
│ ├── Home GIF.gif
│ ├── Home Video.mp4
│ ├── Rounded-Text-Black.png
│ ├── Rounded-Text-White.png
│ ├── icons8-ethereum-48.png
│ ├── Plus.svg
│ ├── Ethereum.svg
│ ├── icons8-facebook.svg
│ ├── icons8-sun.svg
│ ├── icons8-linkedin.svg
│ ├── icons8-instagram.svg
│ ├── Vector.svg
│ ├── icons8-twitter.svg
│ ├── Arrow.svg
│ └── Nfts
│ │ ├── bighead-5.svg
│ │ ├── bighead-2.svg
│ │ ├── bighead-8.svg
│ │ ├── bighead-4.svg
│ │ └── bighead-7.svg
├── setupTests.js
├── App.test.js
├── reportWebVitals.js
├── components
│ ├── Confetti.jsx
│ ├── CoverVideo.jsx
│ ├── Logo.jsx
│ ├── Button.jsx
│ ├── ScrollToTop.jsx
│ ├── Accordion.jsx
│ ├── DrawSvg.jsx
│ ├── TypeWriterText.jsx
│ ├── sections
│ │ ├── Home.jsx
│ │ ├── Faqs.jsx
│ │ ├── Team.jsx
│ │ ├── About.jsx
│ │ ├── Showcase.jsx
│ │ └── Roadmap.jsx
│ ├── FooterBanner.jsx
│ ├── Carousel.jsx
│ ├── Footer.jsx
│ └── Navbar.jsx
├── Icons
│ ├── Minus.js
│ ├── Plus.js
│ ├── Facebook.js
│ ├── Instagram.js
│ ├── LinkedIn.js
│ ├── Twitter.js
│ ├── Vector.js
│ └── Arrow.js
├── styles
│ ├── GlobalStyles.jsx
│ └── Themes.jsx
├── index.js
├── App.js
└── logo.svg
├── .gitignore
├── netlify.toml
├── README.md
└── package.json
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/public/logo512.png
--------------------------------------------------------------------------------
/src/assets/Home GIF.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/src/assets/Home GIF.gif
--------------------------------------------------------------------------------
/src/assets/Home Video.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/src/assets/Home Video.mp4
--------------------------------------------------------------------------------
/public/Weirdos NFT-screenshot.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/public/Weirdos NFT-screenshot.jpg
--------------------------------------------------------------------------------
/src/assets/Rounded-Text-Black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/src/assets/Rounded-Text-Black.png
--------------------------------------------------------------------------------
/src/assets/Rounded-Text-White.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/src/assets/Rounded-Text-White.png
--------------------------------------------------------------------------------
/src/assets/icons8-ethereum-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/israelmitolu/The-Weirdos-NFT/HEAD/src/assets/icons8-ethereum-48.png
--------------------------------------------------------------------------------
/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom';
6 |
--------------------------------------------------------------------------------
/src/App.test.js:
--------------------------------------------------------------------------------
1 | import { render, screen } from '@testing-library/react';
2 | import App from './App';
3 |
4 | test('renders learn react link', () => {
5 | render();
6 | const linkElement = screen.getByText(/learn react/i);
7 | expect(linkElement).toBeInTheDocument();
8 | });
9 |
--------------------------------------------------------------------------------
/src/assets/Plus.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/Ethereum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | }
10 | ],
11 | "start_url": ".",
12 | "display": "standalone",
13 | "theme_color": "#000000",
14 | "background_color": "#ffffff"
15 | }
16 |
--------------------------------------------------------------------------------
/src/reportWebVitals.js:
--------------------------------------------------------------------------------
1 | const reportWebVitals = onPerfEntry => {
2 | if (onPerfEntry && onPerfEntry instanceof Function) {
3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
4 | getCLS(onPerfEntry);
5 | getFID(onPerfEntry);
6 | getFCP(onPerfEntry);
7 | getLCP(onPerfEntry);
8 | getTTFB(onPerfEntry);
9 | });
10 | }
11 | };
12 |
13 | export default reportWebVitals;
14 |
--------------------------------------------------------------------------------
/src/components/Confetti.jsx:
--------------------------------------------------------------------------------
1 | import useWindowSize from "react-use/lib/useWindowSize";
2 | import Confetti from "react-confetti";
3 |
4 | const ConfettiComponent = () => {
5 | const { width, height } = useWindowSize();
6 |
7 | return (
8 |
14 | );
15 | };
16 |
17 | export default ConfettiComponent;
18 |
--------------------------------------------------------------------------------
/src/assets/icons8-facebook.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Icons/Minus.js:
--------------------------------------------------------------------------------
1 | export function Minus(props) {
2 | return (
3 |
16 | );
17 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
25 | # Local Netlify folder
26 | .netlify
27 |
--------------------------------------------------------------------------------
/src/assets/icons8-sun.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Icons/Plus.js:
--------------------------------------------------------------------------------
1 | export function Plus(props) {
2 | return (
3 |
17 | );
18 | }
19 |
20 |
--------------------------------------------------------------------------------
/src/Icons/Facebook.js:
--------------------------------------------------------------------------------
1 | import * as React from "react"
2 |
3 | const Facebook = (props) => (
4 |
7 | )
8 |
9 | export default Facebook
10 |
--------------------------------------------------------------------------------
/src/Icons/Instagram.js:
--------------------------------------------------------------------------------
1 | import * as React from "react"
2 |
3 | const Instagram = (props) => (
4 |
7 | )
8 |
9 | export default Instagram
10 |
--------------------------------------------------------------------------------
/src/components/CoverVideo.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import Gif from "../assets/Home Video.mp4";
4 |
5 | const CoverVideo = () => {
6 | return (
7 |
8 |
9 |
10 | );
11 | };
12 |
13 | const VideoContainer = styled.div`
14 | width: 100%;
15 |
16 | video {
17 | width: 100%;
18 | height: auto;
19 | }
20 |
21 | @media (max-width: 64em) {
22 | min-width: 40vh;
23 | }
24 | `;
25 |
26 | export default CoverVideo;
27 |
--------------------------------------------------------------------------------
/src/Icons/LinkedIn.js:
--------------------------------------------------------------------------------
1 | import * as React from "react"
2 |
3 | const LinkedIn = (props) => (
4 |
7 | )
8 |
9 | export default LinkedIn
10 |
--------------------------------------------------------------------------------
/src/assets/icons8-linkedin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/styles/GlobalStyles.jsx:
--------------------------------------------------------------------------------
1 | import { createGlobalStyle } from "styled-components";
2 |
3 | const GlobalStyles = createGlobalStyle`
4 | *, ::before, ::after{
5 | margin: 0;
6 | padding: 0;
7 | box-sizing: border-box;
8 | }
9 |
10 | body{
11 | font-family: Rubik, sans-serif;
12 | overflow-x: hidden ;
13 | }
14 |
15 | h1,h2,h3,h4{
16 | margin: 0;
17 | padding: 0;
18 | }
19 | a{
20 | color: inherit;
21 | text-decoration: none;
22 | }
23 |
24 | ul{
25 | list-style: none;
26 | }
27 |
28 |
29 | `;
30 |
31 | export default GlobalStyles;
32 |
--------------------------------------------------------------------------------
/src/components/Logo.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import { Link } from "react-router-dom";
4 |
5 | const Logo = () => {
6 | return (
7 |
8 | w.
9 |
10 | );
11 | };
12 |
13 | const LogoText = styled.h1`
14 | font-size: ${(props) => props.theme.fontxxxl};
15 | font-style: italic;
16 | color: ${(props) => props.theme.text};
17 | transition: all 0.2s ease;
18 |
19 | &:hover {
20 | transform: scale(1.1);
21 | }
22 |
23 | @media (max-width: 64em) {
24 | font-size: ${(props) => props.theme.fontxxl};
25 | }
26 | `;
27 | export default Logo;
28 |
--------------------------------------------------------------------------------
/src/assets/icons8-instagram.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import ReactDOM from "react-dom";
3 | import App from "./App";
4 | import "../node_modules/normalize.css/normalize.css";
5 | import { BrowserRouter } from "react-router-dom";
6 | // import reportWebVitals from "./reportWebVitals";
7 |
8 | ReactDOM.render(
9 |
10 |
11 |
12 |
13 | ,
14 | document.getElementById("root")
15 | );
16 |
17 | // If you want to start measuring performance in your app, pass a function
18 | // to log results (for example: reportWebVitals(console.log))
19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
20 | // reportWebVitals();
21 |
--------------------------------------------------------------------------------
/src/Icons/Twitter.js:
--------------------------------------------------------------------------------
1 | import * as React from "react"
2 |
3 | const Twitter = (props) => (
4 |
7 | )
8 |
9 | export default Twitter
10 |
--------------------------------------------------------------------------------
/src/assets/Vector.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/netlify.toml:
--------------------------------------------------------------------------------
1 | # example netlify.toml
2 | [build]
3 | command = "npm run build"
4 | functions = "netlify/functions"
5 | publish = "build"
6 |
7 | ## Uncomment to use this redirect for Single Page Applications like create-react-app.
8 | ## Not needed for static site generators.
9 | #[[redirects]]
10 | # from = "/*"
11 | # to = "/index.html"
12 | # status = 200
13 |
14 | ## (optional) Settings for Netlify Dev
15 | ## https://github.com/netlify/cli/blob/main/docs/netlify-dev.md#project-detection
16 | #[dev]
17 | # command = "yarn start" # Command to start your dev server
18 | # port = 3000 # Port that the dev server will be listening on
19 | # publish = "dist" # Folder with the static content for _redirect file
20 |
21 | ## more info on configuring this file: https://www.netlify.com/docs/netlify-toml-reference/
22 |
--------------------------------------------------------------------------------
/src/assets/icons8-twitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/styles/Themes.jsx:
--------------------------------------------------------------------------------
1 | // This file contains variables for different thremes
2 |
3 | export const Light = {
4 | body: "#fff",
5 | text: "#202020",
6 | bodyRgba: "255, 255, 255",
7 | textRgba: "32,32,32",
8 |
9 | carouselColor: "#EEEDDE",
10 |
11 | fontxs: "0.75rem",
12 | fontsm: "0.875rem",
13 | fontmd: "1rem", // 1rem = 16px
14 | fontlg: "1.25rem",
15 | fontxl: "2rem",
16 | fontxxl: "3rem",
17 | fontxxxl: "4rem",
18 |
19 | fontButton: "0.875rem",
20 |
21 | navHeight: "5rem",
22 | };
23 |
24 | export const Dark = {
25 | body: "#202020",
26 | text: "#fff",
27 | bodyRgba: "32,32,32",
28 | textRgba: "255, 255, 255",
29 |
30 | carouselColor: "#EEEDDE",
31 |
32 | fontxs: "0.75rem",
33 | fontsm: "0.875rem",
34 | fontmd: "1rem", // 1rrem = 16px
35 | fontlg: "1.25rem",
36 | fontxl: "2rem",
37 | fontxxl: "3rem",
38 | fontxxxl: "4rem",
39 |
40 | fontButton: "0.875rem",
41 |
42 | navHeight: "5rem",
43 | };
44 |
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import { ThemeProvider } from "styled-components";
2 | import { Light } from "./styles/Themes";
3 | import GLobalStyles from "./styles/GlobalStyles";
4 |
5 | import Navbar from "./components/Navbar";
6 | import Home from "./components/sections/Home";
7 | import About from "./components/sections/About";
8 | import Roadmap from "./components/sections/Roadmap";
9 | import Showcase from "./components/sections/Showcase";
10 | import Team from "./components/sections/Team";
11 | import Faqs from "./components/sections/Faqs";
12 | import Footer from "./components/Footer";
13 | import ScrollToTop from "./components/ScrollToTop";
14 |
15 | function App() {
16 | return (
17 | <>
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 | >
31 | );
32 | }
33 |
34 | export default App;
35 |
--------------------------------------------------------------------------------
/src/Icons/Vector.js:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | // import DrawSVGPlugin from "gsap-trial/dist/DrawSVGPlugin";
3 |
4 | const Vector = ({ progress = 0, ...props }) => {
5 | return (
6 |
14 | );
15 | };
16 |
17 | export default Vector;
18 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # The-Weirdos-NFT
2 |
3 | This project was built using React JS and Styled Components to create a website for a fictional NFT project called "The Weirdos". The website is a single page application that showcases the NFT collection, the team behind the project, and the roadmap. The website also includes a minting section where users can mint their own NFTs. The website is fully responsive and has a smooth scroll effect.
4 |
5 | ## Snapshots 📸
6 |
7 | 
8 |
9 | View Demo👇:
10 | https://weirdos-nft.netlify.app/
11 |
12 | ## Resources Used in This Project
13 |
14 | - [Character Figures](https://bigheads.io/)
15 | - [Fonts](https://fontsource.org/)
16 | - Svg Icons From: [Icons8](https://icons8.com) & [FreeSvg](https://freesvg.org/)
17 |
18 | ## External Libraries used in this project:
19 |
20 | - [styled-components](https://styled-components.com/docs/advanced)
21 | - [GSAP](https://greensock.com/gsap/)
22 | - [type-writer effect](https://www.npmjs.com/package/typewriter-effect)
23 | - [react-confetti](https://www.npmjs.com/package/react-confetti)
24 | - [react-use](https://www.npmjs.com/package/react-use)
25 |
--------------------------------------------------------------------------------
/src/components/Button.jsx:
--------------------------------------------------------------------------------
1 | import styled from "styled-components";
2 |
3 | const Button = ({ text, link }) => {
4 | return (
5 |
6 | {text}
7 |
8 | );
9 | };
10 |
11 | const Btn = styled.button`
12 | display: inline-block;
13 | background-color: ${(props) => props.theme.text};
14 | color: ${(props) => props.theme.body};
15 | outline: none;
16 | border: none;
17 | font-size: ${(props) => props.theme.fontsm};
18 | padding: 0.9rem 2.3rem;
19 | border-radius: 50px;
20 | cursor: pointer;
21 | transition: all 0.2s ease;
22 | position: relative;
23 |
24 | &:hover {
25 | transform: scale(0.9);
26 | }
27 |
28 | &::after {
29 | content: " ";
30 | position: absolute;
31 | top: 50%;
32 | left: 50%;
33 | transform: translate(-50%, -50%) scale(0);
34 | border: 2px solid ${(props) => props.theme.text};
35 | width: 100%;
36 | height: 100%;
37 | border-radius: 50px;
38 | transition: all 0.2s ease;
39 | }
40 |
41 | &:hover::after {
42 | transform: translate(-50%, -40%) scale(1);
43 | padding: 0.3rem;
44 | }
45 | `;
46 |
47 | export default Button;
48 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "the-weirdos-starter-code",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@testing-library/jest-dom": "^5.16.2",
7 | "@testing-library/react": "^12.1.3",
8 | "@testing-library/user-event": "^13.5.0",
9 | "gsap": "^3.9.1",
10 | "normalize.css": "^8.0.1",
11 | "react": "^17.0.2",
12 | "react-confetti": "^6.0.1",
13 | "react-dom": "^17.0.2",
14 | "react-router-dom": "^6.2.1",
15 | "react-scripts": "5.0.0",
16 | "react-use": "^17.3.2",
17 | "styled-components": "^5.3.3",
18 | "swiper": "^8.0.6",
19 | "typewriter-effect": "^2.18.2",
20 | "web-vitals": "^2.1.4"
21 | },
22 | "scripts": {
23 | "start": "react-scripts start",
24 | "build": "react-scripts build",
25 | "test": "react-scripts test",
26 | "eject": "react-scripts eject"
27 | },
28 | "eslintConfig": {
29 | "extends": [
30 | "react-app",
31 | "react-app/jest"
32 | ]
33 | },
34 | "browserslist": {
35 | "production": [
36 | ">0.2%",
37 | "not dead",
38 | "not op_mini all"
39 | ],
40 | "development": [
41 | "last 1 chrome version",
42 | "last 1 firefox version",
43 | "last 1 safari version"
44 | ]
45 | }
46 | }
47 |
--------------------------------------------------------------------------------
/src/assets/Arrow.svg:
--------------------------------------------------------------------------------
1 |
18 |
--------------------------------------------------------------------------------
/src/components/ScrollToTop.jsx:
--------------------------------------------------------------------------------
1 | import React, { useRef, useLayoutEffect } from "react";
2 | import useWindowScroll from "react-use/lib/useWindowScroll";
3 | import styled from "styled-components";
4 |
5 | const ScrollToTop = () => {
6 | const ref = useRef(null);
7 | const { y } = useWindowScroll();
8 |
9 | //Handles the scroll to each section
10 | const scrollToTop = () => {
11 | let element = document.getElementById("navbar");
12 |
13 | element.scrollIntoView({
14 | behavior: "smooth",
15 | block: "start",
16 | inline: "nearest",
17 | });
18 | };
19 |
20 | useLayoutEffect(() => {
21 | if (y > 200) {
22 | ref.current.style.display = "flex";
23 | } else {
24 | ref.current.style.display = "none";
25 | }
26 | }, [y]);
27 |
28 | return (
29 | scrollToTop()}>
30 | ↑
31 |
32 | );
33 | };
34 |
35 | const Up = styled.div`
36 | width: 3rem;
37 | height: 3rem;
38 | color: ${(props) => props.theme.text};
39 | background-color: ${(props) => props.theme.body};
40 | font-size: ${(props) => props.theme.fontxl};
41 | position: fixed;
42 | right: 1rem;
43 | bottom: 1rem;
44 | cursor: pointer;
45 | display: none;
46 | justify-content: center;
47 | align-items: center;
48 | border-radius: 50%;
49 | transition: all 0.2s ease;
50 |
51 | &:hover {
52 | transform: scale(1.2);
53 | }
54 |
55 | &:active {
56 | transform: scale(0.9);
57 | }
58 | `;
59 |
60 | export default ScrollToTop;
61 |
--------------------------------------------------------------------------------
/src/Icons/Arrow.js:
--------------------------------------------------------------------------------
1 | import * as React from "react"
2 |
3 | const Arrow = (props) => (
4 |
46 | )
47 |
48 | export default Arrow
49 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | Weirdos NFT
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/src/components/Accordion.jsx:
--------------------------------------------------------------------------------
1 | import { useState } from "react";
2 | import styled from "styled-components";
3 | import { Minus } from "../Icons/Minus";
4 | import { Plus } from "../Icons/Plus";
5 |
6 | const Accordion = ({ title, children }) => {
7 | const [collapse, setCollapse] = useState(false);
8 | return (
9 |
10 | {
12 | setCollapse(!collapse);
13 | }}
14 | >
15 |
16 | {title}
17 |
18 | {collapse ? (
19 |
20 |
21 |
22 | ) : (
23 |
24 |
25 |
26 | )}
27 |
28 | {children}
29 |
30 | );
31 | };
32 |
33 | const Container = styled.div`
34 | cursor: pointer;
35 | padding: 1rem 0.5rem;
36 | display: flex;
37 | flex-direction: column;
38 | border-bottom: 1px solid ${(props) => props.theme.carouselColor};
39 | margin: 3rem 0;
40 |
41 | @media (max-width: 48em) {
42 | margin: 2rem 0;
43 | }
44 | `;
45 |
46 | const Title = styled.div`
47 | font-size: ${(props) => props.theme.fontsm};
48 | display: flex;
49 | justify-content: space-between;
50 | align-items: center;
51 | `;
52 |
53 | const Reveal = styled.div`
54 | display: ${(props) => (props.clicked ? "block" : "none")};
55 | margin-top: 1rem;
56 | color: ${(props) => `rgba(${props.theme.bodyRgba}, 0.6)`};
57 | font-size: ${(props) => props.theme.fontsm};
58 | font-weight: 300;
59 | line-height: 1.1rem;
60 | `;
61 |
62 | const Name = styled.div`
63 | display: flex;
64 | align-items: center;
65 | `;
66 |
67 | const Indicator = styled.span`
68 | display: flex;
69 | justify-content: center;
70 | align-items: center;
71 | font-size: ${(props) => props.theme.fontxl};
72 |
73 | svg {
74 | width: 1rem;
75 | height: auto;
76 | fill: ${(props) => props.theme.carouselColor};
77 | }
78 |
79 | @media (max-width: 48em) {
80 | font-size: ${(props) => props.theme.fontlg};
81 | }
82 | `;
83 |
84 | export default Accordion;
85 |
--------------------------------------------------------------------------------
/src/logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/DrawSvg.jsx:
--------------------------------------------------------------------------------
1 | import gsap from "gsap";
2 | import ScrollTrigger from "gsap/ScrollTrigger";
3 | import React, { useLayoutEffect, useRef } from "react";
4 | import styled from "styled-components";
5 | import { keyframes } from "styled-components";
6 | import Vector from "../Icons/Vector";
7 |
8 | const DrawSvg = () => {
9 | const ref = useRef(null);
10 | const BallRef = useRef(null);
11 |
12 | gsap.registerPlugin(ScrollTrigger);
13 |
14 | useLayoutEffect(() => {
15 | let element = ref.current;
16 |
17 | let svg = document.getElementsByClassName("svg-path")[0];
18 |
19 | const length = svg.getTotalLength();
20 |
21 | //Start positioning of Svg Drawing
22 | svg.style.strokeDasharray = length;
23 |
24 | //Hide svg before scrolling starts
25 | svg.style.strokeDashoffset = length;
26 |
27 | let t1 = gsap.timeline({
28 | scrollTrigger: {
29 | trigger: element,
30 | start: "top center",
31 | end: "bottom bottom",
32 | onUpdate: (self) => {
33 | const draw = length * self.progress;
34 |
35 | // Also reverse the drawing when scrolling up
36 | svg.style.strokeDashoffset = length - draw;
37 | },
38 | onToggle: (self) => {
39 | if (self.isActive) {
40 | BallRef.current.style.display = "none";
41 | } else {
42 | BallRef.current.style.display = "inline-block";
43 | }
44 | },
45 | },
46 | });
47 |
48 | return () => {
49 | if (t1) t1.kill();
50 | };
51 | }, []);
52 |
53 | return (
54 | <>
55 |
56 |
57 |
58 |
59 | >
60 | );
61 | };
62 |
63 | const Bounce = keyframes`
64 | from{ transform: translateX(-50%) scale(.5);}
65 | to{ transform: translateX(-50%) scale(1);}
66 | `;
67 |
68 | const Ball = styled.div`
69 | position: absolute;
70 | top: 0rem;
71 | left: 50%;
72 | transform: translateX(-50%);
73 | width: 1.5rem;
74 | height: 1.5rem;
75 | border-radius: 50%;
76 | background-color: ${(props) => props.theme.text};
77 | animation: ${Bounce} 0.5s linear infinite alternate;
78 |
79 | @media (max-width: 48em) {
80 | left: 1rem;
81 | }
82 | `;
83 |
84 | const VectorContainer = styled.div`
85 | position: absolute;
86 | top: 0.5rem;
87 | left: 50%;
88 | transform: translateX(-50%);
89 | width: 100%;
90 | height: 100%;
91 | overflow: hidden;
92 |
93 | svg {
94 | width: 100%;
95 | height: 100%;
96 | display: inline-block;
97 | }
98 |
99 | @media (max-width: 48em) {
100 | left: 1rem;
101 | }
102 | `;
103 |
104 | export default DrawSvg;
105 |
--------------------------------------------------------------------------------
/src/components/TypeWriterText.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import Typewriter from "typewriter-effect";
4 | import Button from "./Button";
5 |
6 | const TypeWriterText = () => {
7 | return (
8 | <>
9 |
10 | Discover a new era of cool
11 | {
17 | typewriter
18 | .typeString(`NFTs.`)
19 | .pauseFor(2000)
20 | .deleteAll()
21 | .typeString(`Collectibles.`)
22 | .pauseFor(2000)
23 | .deleteAll()
24 | .typeString(`Ape Killers!`)
25 | .pauseFor(2000)
26 | .deleteAll()
27 | .start();
28 | }}
29 | />
30 |
31 | Bored of Apes? Try Something New
32 |
33 |
34 |
35 | >
36 | );
37 | };
38 |
39 | const Title = styled.h2`
40 | font-size: ${(props) => props.theme.fontxxl};
41 | text-transform: capitalize;
42 | font-weight: 500;
43 | width: 80%;
44 | color: ${(props) => props.theme.text};
45 | align-self: flex-start;
46 |
47 | span {
48 | text-transform: uppercase;
49 | font-family: monospace;
50 | }
51 |
52 | .text {
53 | &-1 {
54 | color: lightseagreen;
55 | }
56 | &-2 {
57 | color: goldenrod;
58 | }
59 | &-3 {
60 | color: orangered;
61 | }
62 | }
63 |
64 | @media (max-width: 70em) {
65 | font-size: ${(props) => props.theme.fontxl};
66 | }
67 |
68 | @media (max-width: 48em) {
69 | align-self: center;
70 | text-align: center;
71 | }
72 |
73 | @media (max-width: 40em) {
74 | width: 90%;
75 | }
76 | `;
77 |
78 | const Subtitle = styled.p`
79 | font-size: ${(props) => props.theme.fontlg};
80 | text-transform: capitalize;
81 | color: ${(props) => `rgba(${props.theme.Rgba}, 0.6)`};
82 | margin-bottom: 1rem;
83 | font-weight: 500;
84 | width: 80%;
85 | align-self: flex-start;
86 |
87 | @media (max-width: 40em) {
88 | font-size: ${(props) => props.theme.fontmd};
89 | }
90 |
91 | @media (max-width: 48em) {
92 | align-self: center;
93 | text-align: center;
94 | }
95 | `;
96 |
97 | const ButtonContainer = styled.div`
98 | width: 80%;
99 | align-self: flex-start;
100 |
101 | @media (max-width: 48em) {
102 | align-self: center;
103 | text-align: center;
104 |
105 | button {
106 | margin: 0 auto;
107 | }
108 | }
109 | `;
110 | export default TypeWriterText;
111 |
--------------------------------------------------------------------------------
/src/components/sections/Home.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import CoverVideo from "../CoverVideo";
4 | import TypeWriterText from "../TypeWriterText";
5 | import RoundTextBlack from "../../assets/Rounded-Text-Black.png";
6 | import { keyframes } from "styled-components";
7 |
8 | const Home = () => {
9 | return (
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | ↓
21 |
22 |
23 |
24 |
25 | );
26 | };
27 |
28 | const Section = styled.section`
29 | min-height: ${(props) => `calc(100vh - ${props.theme.navHeight})`};
30 | width: 100vw;
31 | position: relative;
32 | background-color: ${(props) => props.theme.body};
33 | `;
34 |
35 | const Container = styled.div`
36 | width: 75%;
37 | min-height: 80vh;
38 | margin: 0 auto;
39 | display: flex;
40 | justify-content: center;
41 | align-items: center;
42 |
43 | @media (max-width: 64em) {
44 | width: 85%;
45 | }
46 |
47 | @media (max-width: 48em) {
48 | flex-direction: column-reverse;
49 | width: 50%;
50 |
51 | & > *:first-child {
52 | width: 100%;
53 | margin-top: 2rem;
54 | }
55 | }
56 | `;
57 |
58 | const Box = styled.div`
59 | width: 50%;
60 | width: 100%;
61 | display: flex;
62 | flex-direction: column;
63 | justify-content: center;
64 | align-items: center;
65 | `;
66 |
67 | const rotate = keyframes`
68 | 100%{
69 | transform: rotate(1turn);
70 | }
71 | `;
72 |
73 | const RoundText = styled.div`
74 | position: absolute;
75 | left: 5%;
76 | bottom: 2rem;
77 | width: 6rem;
78 | height: 6rem;
79 | border: 1px solid ${(props) => props.theme.text};
80 | border-radius: 50%;
81 |
82 | img {
83 | width: 100%;
84 | height: auto;
85 | animation: ${rotate} 6s linear infinite reverse;
86 | }
87 |
88 | @media (max-width: 64em) {
89 | width: 4rem;
90 | height: 4rem;
91 | left: 80%;
92 | right: 2rem;
93 | bottom: 100%;
94 | }
95 |
96 | @media (max-width: 48em) {
97 | right: 1rem;
98 | }
99 | `;
100 |
101 | const Circle = styled.span`
102 | width: 3rem;
103 | height: 3rem;
104 | display: flex;
105 | justify-content: center;
106 | align-items: center;
107 | border-radius: 50%;
108 | background-color: ${(props) => props.theme.text};
109 | color: ${(props) => props.theme.body};
110 | position: absolute;
111 | top: 50%;
112 | left: 50%;
113 | transform: translate(-50%, -50%);
114 | font-size: ${(props) => props.theme.fontxl};
115 |
116 | @media (max-width: 64em) {
117 | width: 2rem;
118 | height: 2rem;
119 | font-size: ${(props) => props.theme.fontlg};
120 | }
121 |
122 | @media (max-width: 48em) {
123 | right: 1rem;
124 | }
125 | `;
126 |
127 | export default Home;
128 |
--------------------------------------------------------------------------------
/src/components/FooterBanner.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 |
4 | import img1 from "../assets/Nfts/bighead.svg";
5 | import img2 from "../assets/Nfts/bighead-1.svg";
6 | import img3 from "../assets/Nfts/bighead-2.svg";
7 | import img4 from "../assets/Nfts/bighead-3.svg";
8 | import img5 from "../assets/Nfts/bighead-4.svg";
9 | import img6 from "../assets/Nfts/bighead-5.svg";
10 |
11 | const FooterBanner = () => {
12 | return (
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | Join the
weirdos club
24 |
25 |
26 | Join Now
27 |
28 |
29 | );
30 | };
31 |
32 | const JoinNow = styled.button`
33 | display: inline-block;
34 | background-color: ${(props) => props.theme.body};
35 | color: ${(props) => props.theme.text};
36 | outline: none;
37 | border: none;
38 | font-size: ${(props) => props.theme.fontlg};
39 | font-weight: 600;
40 | padding: 1.5rem 3rem;
41 | border-radius: 50px;
42 | cursor: pointer;
43 | transition: all 0.2s ease;
44 | position: relative;
45 |
46 | @media (max-width: 48em) {
47 | padding: 1rem 2rem;
48 | }
49 |
50 | @media (max-width: 30em) {
51 | padding: 0.5rem 2rem;
52 | font-size: ${(props) => props.theme.fontsm};
53 | }
54 |
55 | &:hover {
56 | transform: scale(0.9);
57 | }
58 |
59 | &::after {
60 | content: " ";
61 | position: absolute;
62 | top: 50%;
63 | left: 50%;
64 | transform: translate(-50%, -50%) scale(0);
65 | border: 2px solid ${(props) => props.theme.body};
66 | width: 100%;
67 | height: 100%;
68 | border-radius: 50px;
69 | transition: all 0.2s ease;
70 | }
71 |
72 | &:hover::after {
73 | transform: translate(-50%, -40%) scale(1);
74 | padding: 0.3rem;
75 | }
76 | `;
77 |
78 | const BtnContainer = styled.div`
79 | width: 35%;
80 | display: flex;
81 | justify-content: flex-end;
82 |
83 | @media (max-width: 48em) {
84 | width: 100%;
85 | justify-content: center;
86 | }
87 | `;
88 |
89 | const Section = styled.div`
90 | width: 100vw;
91 | height: 25rem;
92 | position: relative;
93 | border-top: 2px solid ${(props) => props.theme.text};
94 | background-color: ${(props) => `rgba(${props.theme.textRgba}, 0.9)`};
95 | display: flex;
96 | justify-content: center;
97 | align-items: center;
98 | overflow: hidden;
99 |
100 | @media (max-width: 48em) {
101 | height: 15rem;
102 | flex-direction: column;
103 | }
104 | `;
105 |
106 | const ImgContainer = styled.div`
107 | width: 100%;
108 | position: absolute;
109 | top: 50%;
110 | left: 50%;
111 | transform: translate(-50%, -50%);
112 | opacity: 0.2;
113 | display: flex;
114 | justify-content: center;
115 | align-items: center;
116 |
117 | img {
118 | width: 15rem;
119 | height: auto;
120 | }
121 |
122 | @media (max-width: 48em) {
123 | img {
124 | width: 10rem;
125 | height: auto;
126 | }
127 | }
128 | `;
129 |
130 | const Title = styled.h1`
131 | font-size: ${(props) => props.theme.fontxxxl};
132 | font-weight: 500;
133 | text-transform: capitalize;
134 | color: ${(props) => props.theme.body};
135 | text-shadow: 1px 1px 2px ${(props) => props.theme.text};
136 | padding: 1rem 2rem;
137 | z-index: 10;
138 | width: 35%;
139 |
140 | @media (max-width: 64em) {
141 | font-size: ${(props) => props.theme.fontxxl};
142 | width: 40%;
143 | text-align: center;
144 | }
145 |
146 | @media (max-width: 48em) {
147 | font-size: ${(props) => props.theme.fontxl};
148 | width: 100%;
149 | padding: 2rem 0;
150 | }
151 | `;
152 |
153 | export default FooterBanner;
154 |
--------------------------------------------------------------------------------
/src/components/sections/Faqs.jsx:
--------------------------------------------------------------------------------
1 | import gsap from "gsap";
2 | import ScrollTrigger from "gsap/ScrollTrigger";
3 | import { useLayoutEffect, useRef } from "react";
4 | import styled from "styled-components";
5 | import Accordion from "../Accordion";
6 |
7 | const Faqs = () => {
8 | const ref = useRef(null);
9 |
10 | gsap.registerPlugin(ScrollTrigger);
11 |
12 | useLayoutEffect(() => {
13 | let element = ref.current;
14 |
15 | ScrollTrigger.create({
16 | trigger: element,
17 | start: "top top",
18 | bottom: "bottom top",
19 | pin: true,
20 | pinSpacing: false,
21 | scrub: true,
22 | });
23 | return () => {
24 | ScrollTrigger.kill();
25 | };
26 | }, []);
27 |
28 | return (
29 |
30 | FAQs
31 |
32 |
33 |
34 | Once minted or bought simply connect to your OpenSea account to view
35 | your NFTs.
36 |
37 |
38 | A metaverse is a network of 3D virtual worlds focused on social
39 | connection. In futurism and science fiction, it is often described
40 | as a hypothetical iteration of the Internet as a single, universal
41 | virtual world that is facilitated by the use of virtual and
42 | augmented reality headsets.
43 |
44 |
45 | The amount of royalties was fixed at 5% to finance the Weirdos
46 | Club's projects. We have the ambition to organize multiple events
47 | around the world in order to strengthen the community and build a
48 | network of entrepreneurs and investors with the same mindset and
49 | common interests.
50 |
51 |
52 |
53 |
57 | Once minted or bought simply connect to your OpenSea account to view
58 | your NFTs.
59 |
60 |
64 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Dolore
65 | deserunt consequatur quisquam maxime molestias dolores ipsum,
66 | exercitationem vel sint quidem aliquam modi quis impedit corporis
67 | unde inventore fugiat provident in.
68 |
69 |
73 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vel enim
74 | veritatis iusto officia. Exercitationem, ducimus reiciendis. Rem,
75 | maxime, similique neque minus aliquam dolore doloremque laboriosam,
76 | facilis quibusdam unde sint officia.
77 |
78 |
79 |
80 |
81 | );
82 | };
83 |
84 | const Section = styled.section`
85 | min-height: 100vh;
86 | height: auto;
87 | width: 100vw;
88 | background-color: ${(props) => props.theme.text};
89 | color: ${(props) => props.theme.body};
90 | position: relative;
91 | display: flex;
92 | justify-content: center;
93 | align-items: center;
94 | flex-direction: column;
95 | `;
96 |
97 | const Title = styled.h1`
98 | font-size: ${(props) => props.theme.fontxxl};
99 | text-transform: uppercase;
100 | font-weight: 500;
101 | color: ${(props) => props.theme.body};
102 | margin: 1rem auto;
103 | border-bottom: 2px solid ${(props) => props.theme.body};
104 | width: fit-content;
105 |
106 | @media (max-width: 48em) {
107 | font-size: ${(props) => props.theme.fontxl};
108 | }
109 | `;
110 |
111 | const Container = styled.div`
112 | width: 75%;
113 | margin: 2rem auto;
114 | display: flex;
115 | justify-content: space-between;
116 | align-items: center;
117 |
118 | @media (max-width: 64em) {
119 | width: 80%;
120 | }
121 |
122 | @media (max-width: 48em) {
123 | width: 90%;
124 | flex-direction: column;
125 |
126 | & > *::last-child {
127 | & > *::first-child {
128 | margin-top: 0;
129 | }
130 | }
131 | }
132 | `;
133 |
134 | const Box = styled.div`
135 | width: 45%;
136 |
137 | @media (max-width: 64em) {
138 | width: 90%;
139 | align-self: center;
140 | }
141 | `;
142 |
143 | export default Faqs;
144 |
--------------------------------------------------------------------------------
/src/components/sections/Team.jsx:
--------------------------------------------------------------------------------
1 | import styled from "styled-components";
2 | import ConfettiComponent from "../Confetti";
3 |
4 | import img1 from "../../assets/Nfts/bighead.svg";
5 | import img2 from "../../assets/Nfts/bighead-1.svg";
6 | import img3 from "../../assets/Nfts/bighead-2.svg";
7 | import img4 from "../../assets/Nfts/bighead-3.svg";
8 | import img5 from "../../assets/Nfts/bighead-4.svg";
9 | import img6 from "../../assets/Nfts/bighead-5.svg";
10 | import img7 from "../../assets/Nfts/bighead-6.svg";
11 | import img8 from "../../assets/Nfts/bighead-7.svg";
12 | import img9 from "../../assets/Nfts/bighead-8.svg";
13 |
14 | const Team = () => {
15 | return (
16 |
17 |
18 | Team
19 |
20 |
21 |
22 |
23 |
24 |
25 |
30 |
35 |
36 |
37 |
38 |
39 | );
40 | };
41 |
42 | const MemberComponent = ({ img, name = " ", position = " " }) => {
43 | return (
44 | -
45 |
46 |
47 |
48 | {name}
49 | {position}
50 |
51 | );
52 | };
53 |
54 | const Section = styled.section`
55 | min-height: 100vh;
56 | width: 100vw;
57 | background-color: ${(props) => props.theme.body};
58 | position: relative;
59 | `;
60 |
61 | const Title = styled.h1`
62 | font-size: ${(props) => props.theme.fontxxl};
63 | text-transform: capitalize;
64 | font-weight: 500;
65 | color: ${(props) => props.theme.text};
66 | display: flex;
67 | justify-content: center;
68 | align-items: center;
69 | margin: 1rem auto;
70 | border-bottom: 2px solid ${(props) => props.theme.text};
71 | width: fit-content;
72 |
73 | @media (max-width: 40em) {
74 | font-size: ${(props) => props.theme.fontxl};
75 | }
76 | `;
77 |
78 | const Container = styled.div`
79 | width: 75%;
80 | margin: 2rem auto;
81 | display: flex;
82 | justify-content: space-between;
83 | align-items: center;
84 | flex-wrap: wrap;
85 |
86 | @media (max-width: 64em) {
87 | width: 80%;
88 | }
89 |
90 | @media (max-width: 48em) {
91 | width: 90%;
92 | justify-content: center;
93 | }
94 | `;
95 |
96 | const Item = styled.div`
97 | width: calc(20rem - 4vw);
98 | padding: 1rem 0;
99 | color: ${(props) => props.theme.body};
100 | margin: 2rem 1rem;
101 | position: relative;
102 | border: 2px solid ${(props) => props.theme.text};
103 | border-radius: 20px;
104 | backdrop-filter: blur(4px);
105 | z-index: 5;
106 |
107 | &:hover {
108 | img {
109 | transform: translateY(-1rem) scale(1.2);
110 | }
111 | }
112 |
113 | @media (max-width: 30em) {
114 | width: 70vw;
115 | }
116 | `;
117 |
118 | const ImgContainer = styled.div`
119 | width: 80%;
120 | margin: 0 auto;
121 | background-color: ${(props) => props.theme.carouselColor};
122 | border: 1px solid ${(props) => props.theme.text};
123 | border-radius: 20px;
124 | padding: 1rem;
125 | cursor: pointer;
126 |
127 | img {
128 | width: 100%;
129 | height: auto;
130 | transition: all 0.3s ease;
131 | }
132 | `;
133 |
134 | const Name = styled.h2`
135 | font-size: ${(props) => props.theme.fontlg};
136 | display: flex;
137 | align-items: center;
138 | justify-content: center;
139 | text-transform: uppercase;
140 | color: ${(props) => props.theme.text};
141 | margin-top: 1rem;
142 | `;
143 |
144 | const Position = styled.h2`
145 | font-size: ${(props) => props.theme.fontmd};
146 | display: flex;
147 | align-items: center;
148 | justify-content: center;
149 | text-transform: capitalize;
150 | color: ${(props) => `rgba(${props.theme.textRgba}, 0.9)`};
151 | font-weight: 400;
152 | `;
153 |
154 | export default Team;
155 |
--------------------------------------------------------------------------------
/src/components/sections/About.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled, { ThemeProvider } from "styled-components";
3 | import Carousel from "../Carousel";
4 | import Button from "../Button";
5 | import { Dark } from "../../styles/Themes";
6 |
7 | const About = () => {
8 | return (
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | Welcome To The
17 |
Weirdos Club.
18 |
19 |
20 | The WEIRDOS CLUB is a private collection of NFTs—unique digital
21 | collectibles. The Weirdos are stored as ERC-721 tokens on the
22 | Ethereum blockchain and hosted on IPFS.
23 |
24 |
25 | With more than 200+ hand drawn traits, each NFT is unique and comes
26 | with a membership to an exclusive group of successful investors.
27 | Join an ambitious ever-growing community with multiple benefits and
28 | utilities.
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | );
39 | };
40 |
41 | const Section = styled.div`
42 | min-height: 100vh;
43 | width: 100%;
44 | background-color: ${(props) => props.theme.text};
45 | display: flex;
46 | justify-content: center;
47 | align-items: center;
48 | position: relative;
49 | `;
50 |
51 | const Container = styled.div`
52 | width: 75%;
53 | margin: 0 auto;
54 | display: flex;
55 | justify-content: center;
56 | align-items: center;
57 |
58 | @media (max-width: 70em) {
59 | width: 85%;
60 | }
61 |
62 | @media (max-width: 64em) {
63 | width: 100%;
64 | flex-direction: column;
65 |
66 | & > *:last-child {
67 | width: 80%;
68 | }
69 | }
70 |
71 | @media (max-width: 64em) {
72 | & > *:last-child {
73 | width: 90%;
74 | }
75 | }
76 | `;
77 |
78 | const Box = styled.div`
79 | width: 50%;
80 | height: 100%;
81 | min-height: 60vh;
82 | display: flex;
83 | flex-direction: column;
84 | justify-content: center;
85 | align-items: center;
86 |
87 | @media (max-width: 40em) {
88 | min-height: 50vh;
89 | }
90 | `;
91 |
92 | const Title = styled.h2`
93 | font-size: ${(props) => props.theme.fontxxl};
94 | text-transform: capitalize;
95 | color: ${(props) => props.theme.body};
96 | align-self: flex-start;
97 | width: 80%;
98 | margin: 0 auto;
99 | font-weight: 400;
100 |
101 | @media (max-width: 64em) {
102 | width: 100%;
103 | text-align: center;
104 | }
105 |
106 | @media (max-width: 40em) {
107 | font-size: ${(props) => props.theme.fontxl};
108 | }
109 |
110 | @media (max-width: 30em) {
111 | font-size: ${(props) => props.theme.fontlg};
112 | }
113 | `;
114 |
115 | const SubText = styled.p`
116 | font-size: ${(props) => props.theme.fontlg};
117 | text-transform: capitalize;
118 | color: ${(props) => props.theme.body};
119 | align-self: flex-start;
120 | margin: 1rem auto;
121 | width: 80%;
122 | font-weight: 400;
123 |
124 | @media (max-width: 64em) {
125 | width: 100%;
126 | text-align: center;
127 | font-size: ${(props) => props.theme.fontmd};
128 | }
129 |
130 | @media (max-width: 40em) {
131 | font-size: ${(props) => props.theme.fontmd};
132 | }
133 |
134 | @media (max-width: 30em) {
135 | font-size: ${(props) => props.theme.fontsm};
136 | }
137 | `;
138 |
139 | const SubTextLight = styled.p`
140 | font-size: ${(props) => props.theme.fontmd};
141 | text-transform: capitalize;
142 | color: ${(props) => `rgba(${props.theme.bodyRgba}, 0.6)`};
143 | align-self: flex-start;
144 | width: 80%;
145 | margin: 1rem auto;
146 | font-weight: 400;
147 |
148 | @media (max-width: 64em) {
149 | width: 100%;
150 | text-align: center;
151 | font-size: ${(props) => props.theme.fontsm};
152 | }
153 |
154 | @media (max-width: 40em) {
155 | font-size: ${(props) => props.theme.fontsm};
156 | }
157 |
158 | @media (max-width: 30em) {
159 | font-size: ${(props) => props.theme.fontxs};
160 | }
161 | `;
162 |
163 | const ButtonContainer = styled.div`
164 | width: 80%;
165 | display: flex;
166 | align-self: flex-start;
167 | margin: 1rem auto;
168 |
169 | @media (max-width: 64em) {
170 | width: 100%;
171 |
172 | button {
173 | margin: 0 auto;
174 | }
175 | }
176 | `;
177 |
178 | export default About;
179 |
--------------------------------------------------------------------------------
/src/components/Carousel.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | // Import Swiper React components
4 | import { Swiper, SwiperSlide } from "swiper/react";
5 |
6 | // Import Swiper styles
7 | import "swiper/css";
8 | import "swiper/css/effect-cards";
9 | import "swiper/css/pagination";
10 | import "swiper/css/navigation";
11 |
12 | // import required modules
13 | import { EffectCards, Pagination, Navigation, Autoplay } from "swiper";
14 |
15 | import img1 from "../assets/Nfts/bighead.svg";
16 | import img2 from "../assets/Nfts/bighead-1.svg";
17 | import img3 from "../assets/Nfts/bighead-2.svg";
18 | import img4 from "../assets/Nfts/bighead-3.svg";
19 | import img5 from "../assets/Nfts/bighead-4.svg";
20 | import img6 from "../assets/Nfts/bighead-5.svg";
21 | import img7 from "../assets/Nfts/bighead-6.svg";
22 | import img8 from "../assets/Nfts/bighead-7.svg";
23 | import img9 from "../assets/Nfts/bighead-8.svg";
24 | import img10 from "../assets/Nfts/bighead-9.svg";
25 |
26 | import Arrow from "../assets/Arrow.svg";
27 |
28 | const Carousel = () => {
29 | return (
30 |
31 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 | );
81 | };
82 |
83 | const Container = styled.div`
84 | width: 25vw;
85 | height: 70vh;
86 |
87 | @media (max-width: 70em) {
88 | height: 60vh;
89 | }
90 |
91 | @media (max-width: 64em) {
92 | height: 50vh;
93 | width: 30vw;
94 | }
95 |
96 | @media (max-width: 48em) {
97 | height: 50vh;
98 | width: 40vw;
99 | }
100 |
101 | @media (max-width: 30em) {
102 | height: 45vh;
103 | width: 60vw;
104 | }
105 |
106 | .swiper {
107 | height: 100%;
108 | width: 100%;
109 |
110 | &-slide {
111 | background-color: ${(props) => props.theme.carouselColor};
112 | border-radius: 20px;
113 | display: flex;
114 | justify-content: center;
115 | align-items: center;
116 |
117 | img {
118 | display: block;
119 | width: 100%;
120 | height: auto;
121 | object-fit: cover;
122 | }
123 | }
124 |
125 | &-button-next {
126 | width: 4rem;
127 | right: 0;
128 | top: 60%;
129 | color: ${(props) => props.theme.text};
130 | background-image: url(${Arrow});
131 | background-position: center;
132 | background-size: cover;
133 |
134 | &::after {
135 | display: none;
136 | }
137 |
138 | @media (max-width: 64em) {
139 | width: 3rem;
140 | }
141 |
142 | @media (max-width: 30em) {
143 | width: 2rem;
144 | }
145 | }
146 |
147 | &-button-prev {
148 | width: 4rem;
149 | left: 0;
150 | top: 60%;
151 | color: ${(props) => props.theme.text};
152 | transform: rotate(180deg);
153 | background-image: url(${Arrow});
154 | background-position: center;
155 | background-size: cover;
156 |
157 | &::after {
158 | display: none;
159 | }
160 |
161 | @media (max-width: 64em) {
162 | width: 3rem;
163 | }
164 |
165 | @media (max-width: 30em) {
166 | width: 2rem;
167 | }
168 | }
169 | }
170 | `;
171 |
172 | export default Carousel;
173 |
--------------------------------------------------------------------------------
/src/components/Footer.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import FooterBanner from "./FooterBanner";
4 | import Logo from "./Logo";
5 | import Instagram from "../Icons/Instagram";
6 | import LinkedIn from "../Icons/LinkedIn";
7 | import Twitter from "../Icons/Twitter";
8 | import Facebook from "../Icons/Facebook";
9 |
10 | const Footer = () => {
11 | const scrollTo = (id) => {
12 | let element = document.getElementById(id);
13 |
14 | element.scrollIntoView({
15 | behavior: "smooth",
16 | block: "start",
17 | inline: "nearest",
18 | });
19 | };
20 |
21 | return (
22 |
23 |
24 |
25 |
26 |
27 |
28 |
33 |
34 |
35 |
40 |
41 |
42 |
47 |
48 |
49 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | - scrollTo("home")}>Home
61 | - scrollTo("about")}>About
62 | - scrollTo("roadmap")}>Roadmap
63 | - scrollTo("showcase")}>Showcase
64 | - scrollTo("team")}>Team
65 | - scrollTo("faqs")}>Faqs
66 |
67 |
68 |
69 |
70 | ©{new Date().getFullYear()} Weirdos Club. All Rights Reserved.
71 |
72 |
73 | Made with 💖 by {""}
74 |
79 | Israel Mitolu
80 |
81 |
82 |
83 |
84 | );
85 | };
86 |
87 | const Credits = styled.div`
88 | width: 75%;
89 | margin: 0 auto;
90 | display: flex;
91 | justify-content: space-between;
92 | align-items: center;
93 |
94 | a {
95 | text-decoration: underline;
96 | }
97 |
98 | @media (max-width: 48em) {
99 | flex-direction: column;
100 | width: 100%;
101 |
102 | span {
103 | margin-bottom: 1rem;
104 | }
105 | }
106 | `;
107 |
108 | const Item = styled.li`
109 | width: fit-content;
110 | cursor: pointer;
111 |
112 | &::after {
113 | content: "";
114 | display: block;
115 | width: 0%;
116 | height: 2px;
117 | background: ${(props) => props.theme.text};
118 | transition: width 0.3s ease;
119 | }
120 |
121 | &:hover {
122 | &::after {
123 | width: 100%;
124 | }
125 | }
126 | `;
127 |
128 | const ListItems = styled.ul`
129 | width: 50%;
130 | display: grid;
131 | grid-template-columns: repeat(2, 1fr);
132 | grid-template-rows: repeat(3, 1fr);
133 | grid-gap: 1rem;
134 |
135 | @media (max-width: 48em) {
136 | display: none;
137 | }
138 | `;
139 |
140 | const IconList = styled.div`
141 | display: flex;
142 | align-items: center;
143 | margin: 1rem auto;
144 |
145 | & > * {
146 | padding-right: 0.5rem;
147 | transition: all 0.2s ease;
148 |
149 | &:hover {
150 | transform: scale(1.2);
151 | }
152 | }
153 | `;
154 |
155 | const LeftContent = styled.div`
156 | display: flex;
157 | flex-direction: column;
158 | justify-content: center;
159 | align-items: center;
160 |
161 | @media (max-width: 48em) {
162 | width: 100%;
163 | }
164 | `;
165 |
166 | const Container = styled.div`
167 | width: 75%;
168 | margin: 2rem auto;
169 | display: flex;
170 | justify-content: space-between;
171 | align-items: center;
172 | border-bottom: 1px solid ${(props) => props.theme.text};
173 |
174 | @media (max-width: 48em) {
175 | width: 90%;
176 |
177 | h1 {
178 | font-size: ${(props) => props.theme.fontxxxl};
179 | }
180 | }
181 | `;
182 |
183 | const Section = styled.section`
184 | min-height: 100vh;
185 | width: 100vw;
186 | background-color: ${(props) => props.theme.body};
187 | color: ${(props) => props.theme.text};
188 | position: relative;
189 | display: flex;
190 | flex-direction: column;
191 | `;
192 |
193 | export default Footer;
194 |
--------------------------------------------------------------------------------
/src/components/Navbar.jsx:
--------------------------------------------------------------------------------
1 | import styled from "styled-components";
2 | import Logo from "./Logo";
3 | import Button from "./Button";
4 | import { useState } from "react";
5 |
6 | const Navbar = () => {
7 | const [click, setClick] = useState(false);
8 |
9 | //Handles the scroll to each section
10 | const scrollTo = (id) => {
11 | let element = document.getElementById(id);
12 |
13 | element.scrollIntoView({
14 | behavior: "smooth",
15 | block: "start",
16 | inline: "nearest",
17 | });
18 |
19 | setClick(!click);
20 | };
21 |
22 | return (
23 |
24 |
52 |
53 | );
54 | };
55 |
56 | const HamburgerMenu = styled.div`
57 | width: ${(props) => (props.click ? "2rem" : "1.5rem")};
58 | height: 2px;
59 | background-color: ${(props) => props.theme.text};
60 | position: absolute;
61 | top: 2rem;
62 | left: 50%;
63 | transform: ${(props) =>
64 | props.click
65 | ? `translateX(-50%) rotate(90deg)`
66 | : `translateX(-50%) rotate(0)`};
67 | justify-content: center;
68 | align-items: center;
69 | cursor: pointer;
70 | transition: all 0.3s ease;
71 | display: none;
72 |
73 | @media (max-width: 64em) {
74 | /* 1024px */
75 | display: flex;
76 | }
77 |
78 | &::before,
79 | &::after {
80 | content: "";
81 | width: ${(props) => (props.click ? "1rem" : "1.5rem")};
82 | height: 2px;
83 | right: ${(props) => (props.click ? "-2px" : "0")};
84 | background-color: ${(props) => props.theme.text};
85 | position: absolute;
86 | }
87 |
88 | &::after {
89 | top: ${(props) => (props.click ? "0.3rem" : "0.5rem")};
90 | transform: ${(props) => (props.click ? `rotate(-40deg)` : `rotate(0)`)};
91 | }
92 |
93 | &::before {
94 | bottom: ${(props) => (props.click ? "0.3rem" : "0.5rem")};
95 | transform: ${(props) => (props.click ? `rotate(40deg)` : `rotate(0)`)};
96 | }
97 | `;
98 |
99 | const Section = styled.section`
100 | width: 100vw;
101 | background-color: ${(props) => props.theme.body};
102 | `;
103 |
104 | const Nav = styled.nav`
105 | display: flex;
106 | justify-content: space-between;
107 | align-items: center;
108 | width: 85%;
109 | height: ${(props) => props.theme.navHeight};
110 | margin: 0 auto;
111 |
112 | .mobile {
113 | display: none;
114 | }
115 |
116 | @media (max-width: 64em) {
117 | .desktop {
118 | display: none;
119 | }
120 |
121 | .mobile {
122 | display: inline-block;
123 | }
124 | }
125 | `;
126 |
127 | const Menu = styled.ul`
128 | display: flex;
129 | justify-content: space-between;
130 | align-items: center;
131 |
132 | @media (max-width: 64em) {
133 | /* 1024px */
134 | position: fixed;
135 | top: ${(props) => props.theme.navHeight};
136 | left: 0;
137 | right: 0;
138 | bottom: 0;
139 | width: 100vw;
140 | height: ${(props) => `calc(100vh - ${props.theme.navHeight})`};
141 | z-index: 50;
142 | background-color: ${(props) => `rgba(${props.theme.bodyRgba}, 0.85)`};
143 | flex-direction: column;
144 | justify-content: center;
145 | backdrop-filter: blur(2px);
146 | transform: ${(props) =>
147 | props.click ? `translateY(0)` : `translateY(1000%)`};
148 | transition: all 0.3s ease;
149 | touch-action: none;
150 | }
151 | `;
152 |
153 | const ListItem = styled.li`
154 | margin: 0 1rem;
155 | color: ${(props) => props.theme.text};
156 | cursor: pointer;
157 |
158 | &::after {
159 | content: "";
160 | display: block;
161 | width: 0%;
162 | height: 2px;
163 | background: ${(props) => props.theme.text};
164 | transition: width 0.3s ease;
165 | }
166 |
167 | &:hover {
168 | &::after {
169 | width: 100%;
170 | }
171 | }
172 |
173 | @media (max-width: 64em) {
174 | margin: 1rem 0;
175 |
176 | &::after {
177 | display: none;
178 | }
179 | }
180 | `;
181 | export default Navbar;
182 |
--------------------------------------------------------------------------------
/src/components/sections/Showcase.jsx:
--------------------------------------------------------------------------------
1 | import React, { useRef } from "react";
2 | import styled from "styled-components";
3 | import { keyframes } from "styled-components";
4 |
5 | import img1 from "../../assets/Nfts/bighead.svg";
6 | import img2 from "../../assets/Nfts/bighead-1.svg";
7 | import img3 from "../../assets/Nfts/bighead-2.svg";
8 | import img4 from "../../assets/Nfts/bighead-3.svg";
9 | import img5 from "../../assets/Nfts/bighead-4.svg";
10 | import img6 from "../../assets/Nfts/bighead-5.svg";
11 | import img7 from "../../assets/Nfts/bighead-6.svg";
12 | import img8 from "../../assets/Nfts/bighead-7.svg";
13 | import img9 from "../../assets/Nfts/bighead-8.svg";
14 | import img10 from "../../assets/Nfts/bighead-9.svg";
15 | import ETH from "../../assets/icons8-ethereum-48.png";
16 |
17 | const Showcase = () => {
18 | const Row1Ref = useRef(null);
19 | const Row2Ref = useRef(null);
20 |
21 | return (
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 | );
40 | };
41 |
42 | const NftItem = ({ img, number = 0, price = 0, passRef }) => {
43 | let play = (e) => {
44 | passRef.current.style.animationPlayState = "running";
45 | };
46 |
47 | let pause = (e) => {
48 | passRef.current.style.animationPlayState = "paused";
49 | };
50 |
51 | return (
52 | pause(e)} onMouseOut={(e) => play(e)}>
53 |
54 |
55 |
56 | Weirdos
57 |
#{number}
58 |
59 |
60 |
61 |
Price
62 |
63 |
64 | {Number(price).toFixed(1)}
65 |
66 |
67 |
68 |
69 | );
70 | };
71 |
72 | const Section = styled.section`
73 | min-height: 100vh;
74 | width: 100vw;
75 | background-color: ${(props) => props.theme.text};
76 | position: relative;
77 | display: flex;
78 | justify-content: center;
79 | align-items: center;
80 | flex-direction: column;
81 | overflow: hidden;
82 |
83 | & > *:first-child {
84 | animation-duration: 20s;
85 |
86 | @media (max-width: 30em) {
87 | animation-duration: 15s;
88 | }
89 | }
90 |
91 | & > *:last-child {
92 | animation-duration: 15s;
93 |
94 | @media (max-width: 30em) {
95 | animation-duration: 10s;
96 | }
97 | }
98 | `;
99 |
100 | const move = keyframes`
101 | 0%{
102 | transform: translateX(100%);
103 | }
104 | 100%{
105 | transform: translateX(-100%);
106 | }
107 | `;
108 |
109 | const Row = styled.div`
110 | white-space: nowrap;
111 | box-sizing: content-box;
112 | margin: 2rem 0;
113 | display: flex;
114 | animation: ${move} linear infinite ${(props) => props.direction};
115 | `;
116 |
117 | const ImgContainer = styled.div`
118 | width: 15rem;
119 | margin: 0 1rem;
120 | background-color: ${(props) => props.theme.body};
121 | border-radius: 20px;
122 | cursor: pointer;
123 |
124 | @media (max-width: 48em) {
125 | width: 12rem;
126 | }
127 |
128 | @media (max-width: 30em) {
129 | width: 10rem;
130 | }
131 |
132 | img {
133 | width: 100%;
134 | height: auto;
135 | }
136 | `;
137 |
138 | const Details = styled.div`
139 | display: flex;
140 | justify-content: space-between;
141 | padding: 0.8rem 1rem;
142 | background-color: ${(props) => props.theme.text};
143 | border: 2px solid ${(props) => `rgba(${props.theme.bodyRgba}, 0.5)`};
144 | border-bottom-left-radius: 20px;
145 | border-bottom-right-radius: 20px;
146 |
147 | span {
148 | font-size: ${(props) => props.theme.fontsm};
149 | color: ${(props) => `rgba(${props.theme.bodyRgba}, 0.5)`};
150 | font-weight: 600;
151 | line-height: 1.5rem;
152 | }
153 |
154 | h1 {
155 | font-size: ${(props) => props.theme.fontmd};
156 | color: ${(props) => props.theme.body};
157 | font-weight: 600;
158 |
159 | @media (max-width: 30em) {
160 | font-size: ${(props) => props.theme.fontsm};
161 | }
162 | }
163 | `;
164 |
165 | const Price = styled.div`
166 | display: flex;
167 | justify-content: flex-start;
168 | align-items: center;
169 |
170 | img {
171 | width: 1rem;
172 | height: auto;
173 | }
174 | `;
175 |
176 | export default Showcase;
177 |
--------------------------------------------------------------------------------
/src/components/sections/Roadmap.jsx:
--------------------------------------------------------------------------------
1 | import gsap from "gsap";
2 | import ScrollTrigger from "gsap/ScrollTrigger";
3 | import React, { useLayoutEffect, useRef } from "react";
4 | import styled from "styled-components";
5 | import DrawSvg from "../DrawSvg";
6 |
7 | const Roadmap = () => {
8 | const revealRefs = useRef([]);
9 | revealRefs.current = [];
10 |
11 | gsap.registerPlugin(ScrollTrigger);
12 |
13 | const addToRefs = (el) => {
14 | if (el && !revealRefs.current.includes(el)) {
15 | revealRefs.current.push(el);
16 | }
17 | };
18 |
19 | useLayoutEffect(() => {
20 | let t1 = gsap.timeline();
21 | revealRefs.current.forEach((el, index) => {
22 | t1.fromTo(
23 | el.childNodes[0],
24 | {
25 | y: "0",
26 | },
27 | {
28 | y: "-30%",
29 | scrollTrigger: {
30 | id: `section-${index + 1}`,
31 | trigger: el,
32 | start: "top center+=200px",
33 | end: "bottom center",
34 | scrub: true,
35 | },
36 | }
37 | );
38 | });
39 |
40 | return () => {};
41 | }, []);
42 |
43 | return (
44 |
45 | Roadmap
46 |
47 |
48 |
49 |
50 |
51 | -
52 |
57 |
62 |
67 |
72 |
77 |
78 |
79 |
80 | );
81 | };
82 |
83 | //Single Roadmap Item
84 | const RoadmapItem = ({ title, subtext, addToRef }) => {
85 | return (
86 | -
87 |
88 |
89 | {title}
90 | {subtext}
91 |
92 |
93 |
94 | );
95 | };
96 |
97 | const Section = styled.section`
98 | min-height: 100vh;
99 | width: 100vw;
100 | background-color: ${(props) => props.theme.body};
101 | position: relative;
102 | `;
103 |
104 | const Title = styled.h1`
105 | font-size: ${(props) => props.theme.fontxxl};
106 | text-transform: capitalize;
107 | font-weight: 500;
108 | color: ${(props) => props.theme.text};
109 | display: flex;
110 | justify-content: center;
111 | align-items: center;
112 | margin: 1rem auto;
113 | border-bottom: 2px solid ${(props) => props.theme.text};
114 | width: fit-content;
115 |
116 | @media (max-width: 40em) {
117 | font-size: ${(props) => props.theme.fontxl};
118 | }
119 | `;
120 |
121 | const Container = styled.div`
122 | width: 70%;
123 | height: 200vh;
124 | background-color: ${(props) => props.theme.body};
125 | margin: 0 auto;
126 | display: flex;
127 | justify-content: center;
128 | align-items: center;
129 | position: relative;
130 |
131 | @media (max-width: 64em) {
132 | width: 80%;
133 | }
134 |
135 | @media (max-width: 48em) {
136 | width: 90%;
137 | }
138 | `;
139 |
140 | const SvgContainer = styled.div`
141 | display: flex;
142 | justify-content: center;
143 | align-items: center;
144 | `;
145 |
146 | const Items = styled.ul`
147 | width: 100%;
148 | height: 100%;
149 | display: flex;
150 | flex-direction: column;
151 | justify-content: center;
152 | align-items: center;
153 |
154 | @media (max-width: 48em) {
155 | width: 90%;
156 | }
157 |
158 | & > *:nth-of-type(2n + 1) {
159 | justify-content: start;
160 |
161 | @media (max-width: 48em) {
162 | justify-content: center;
163 | }
164 |
165 | div {
166 | border-radius: 50px 0 50px 0;
167 | text-align: right;
168 |
169 | @media (max-width: 48em) {
170 | border-radius: 0 50px 0 50px;
171 | text-align: left;
172 |
173 | p {
174 | border-radius: 0 40px 0 40px;
175 | }
176 | }
177 | }
178 | p {
179 | border-radius: 40px 0 40px 0;
180 | }
181 | }
182 |
183 | & > *:nth-of-type(2n) {
184 | justify-content: end;
185 |
186 | @media (max-width: 48em) {
187 | justify-content: center;
188 | }
189 |
190 | div {
191 | border-radius: 0 50px 0 50px;
192 | text-align: left;
193 | }
194 |
195 | p {
196 | border-radius: 0 40px 0 40px;
197 | }
198 | }
199 | `;
200 |
201 | const Item = styled.li`
202 | width: 100%;
203 | height: 100%;
204 | display: flex;
205 |
206 | @media (max-width: 48em) {
207 | justify-content: flex-end !important;
208 | }
209 | `;
210 |
211 | const ItemContainer = styled.div`
212 | width: 40%;
213 | height: fit-content;
214 | padding: 1rem;
215 | border: 3px solid ${(props) => props.theme.text};
216 |
217 | @media (max-width: 48em) {
218 | width: 70%;
219 | }
220 | `;
221 |
222 | const Box = styled.p`
223 | height: fit-content;
224 | background-color: ${(props) => props.theme.carouselColor};
225 | color: ${(props) => props.theme.text};
226 | padding: 1rem;
227 | position: relative;
228 | border: 1px solid ${(props) => props.theme.text};
229 | `;
230 |
231 | const SubTitle = styled.span`
232 | display: block;
233 | font-size: ${(props) => props.theme.fontxl};
234 | text-transform: capitalize;
235 | color: ${(props) => props.theme.text};
236 |
237 | @media (max-width: 40em) {
238 | font-size: ${(props) => props.theme.fontlg};
239 | }
240 | `;
241 |
242 | const Text = styled.span`
243 | display: block;
244 | font-size: ${(props) => props.theme.fontsm};
245 | font-weight: 400;
246 | margin: 0.5rem 0rem;
247 | text-transform: capitalize;
248 | color: ${(props) => props.theme.text};
249 |
250 | @media (max-width: 40em) {
251 | font-size: ${(props) => props.theme.fontxs};
252 | }
253 | `;
254 |
255 | export default Roadmap;
256 |
--------------------------------------------------------------------------------
/src/assets/Nfts/bighead-5.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/Nfts/bighead-2.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/Nfts/bighead-8.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/Nfts/bighead-4.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/Nfts/bighead-7.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------