├── public ├── favicon.ico ├── logo192.png ├── logo512.png ├── robots.txt ├── img │ ├── item-1.png │ ├── item-2.png │ ├── item-3.png │ ├── item-4.png │ ├── item-5.png │ ├── item-6.png │ ├── avatar-1.png │ ├── avatar-10.png │ ├── avatar-2.png │ ├── avatar-3.png │ ├── avatar-4.png │ ├── avatar-5.png │ ├── avatar-6.png │ ├── avatar-7.png │ ├── avatar-8.png │ ├── avatar-9.png │ ├── steps-1.png │ ├── steps-2.png │ └── steps-3.png ├── manifest.json └── index.html ├── postcss.config.js ├── src ├── index.css ├── index.js ├── App.js ├── data │ ├── item-nft.json │ └── creator.json └── Components │ ├── Community.js │ ├── Button.js │ ├── Footer.js │ ├── Collections.js │ ├── Navbar.js │ ├── Steps.js │ ├── Hero.js │ └── Creators.js ├── .gitignore ├── tailwind.config.js ├── README.md └── package.json /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/img/item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/item-1.png -------------------------------------------------------------------------------- /public/img/item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/item-2.png -------------------------------------------------------------------------------- /public/img/item-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/item-3.png -------------------------------------------------------------------------------- /public/img/item-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/item-4.png -------------------------------------------------------------------------------- /public/img/item-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/item-5.png -------------------------------------------------------------------------------- /public/img/item-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/item-6.png -------------------------------------------------------------------------------- /public/img/avatar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-1.png -------------------------------------------------------------------------------- /public/img/avatar-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-10.png -------------------------------------------------------------------------------- /public/img/avatar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-2.png -------------------------------------------------------------------------------- /public/img/avatar-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-3.png -------------------------------------------------------------------------------- /public/img/avatar-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-4.png -------------------------------------------------------------------------------- /public/img/avatar-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-5.png -------------------------------------------------------------------------------- /public/img/avatar-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-6.png -------------------------------------------------------------------------------- /public/img/avatar-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-7.png -------------------------------------------------------------------------------- /public/img/avatar-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-8.png -------------------------------------------------------------------------------- /public/img/avatar-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/avatar-9.png -------------------------------------------------------------------------------- /public/img/steps-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/steps-1.png -------------------------------------------------------------------------------- /public/img/steps-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/steps-2.png -------------------------------------------------------------------------------- /public/img/steps-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedddev/nft-landing-page/HEAD/public/img/steps-3.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | body { 6 | background-color: #191919; 7 | } 8 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom/client"; 3 | import "./index.css"; 4 | import App from "./App"; 5 | 6 | const root = ReactDOM.createRoot(document.getElementById("root")); 7 | root.render( 8 | 9 | 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./src/**/*.{js,jsx,ts,tsx}"], 4 | theme: { 5 | extend: { 6 | fontFamily: { 7 | sans: ["Montserrat Alternates", "sans-serif"], 8 | primary: ["Cormorant Garamond", "serif"], 9 | }, 10 | colors: { 11 | background: "#191919", 12 | primary: "#2D4263", 13 | secondary: "#C84B31", 14 | tertiary: "#ECDBBA", 15 | }, 16 | }, 17 | }, 18 | plugins: [], 19 | }; 20 | -------------------------------------------------------------------------------- /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 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 3D NFT Landing Page Collections. 2 | 3 | [Demo Project](https://3d-nft.netlify.app/). 4 | 5 | [Watch it on youtube](https://youtu.be/Oe7MWQ0-kfA) 6 | 7 | Hi friends, today i hope we get a great day and this repo is a build 3D NFT Landing Page Collections with React JS and Tailwind CSS 8 | 9 | [Figma File](https://www.figma.com/community/file/1121655354645544040) 10 | 11 | Social Media : \ 12 | [Instagram](https://www.instagram.com/bedddev/) \ 13 | [Dribbble](https://dribbble.com/bedddev) \ 14 | [Youtube](https://www.youtube.com/channel/UC_XQkWu_EPqam4vHdvh058A) 15 | 16 | hope you guys like it\ 17 | Thanks a lot 18 | 19 | ![Thumbnail (1)](https://user-images.githubusercontent.com/78606852/175220220-10d433dc-a6cc-4380-a827-0a9da1bbfe74.png) 20 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import Navbar from "./Components/Navbar"; 2 | import Hero from "./Components/Hero"; 3 | import Collections from "./Components/Collections"; 4 | import Steps from "./Components/Steps"; 5 | import Creators from "./Components/Creators"; 6 | import Community from "./Components/Community"; 7 | import Footer from "./Components/Footer"; 8 | import AOS from "aos"; 9 | import "aos/dist/aos.css"; 10 | import { useEffect } from "react"; 11 | 12 | function App() { 13 | useEffect(() => { 14 | AOS.init(); 15 | AOS.refresh(); 16 | }); 17 | 18 | return ( 19 | <> 20 | 21 | 22 | 23 | 24 | 25 | 26 |