Skip to content

Commit

Permalink
adding favicons and metadescription
Browse files Browse the repository at this point in the history
  • Loading branch information
soupydolph committed Jan 9, 2023
1 parent e4e1cef commit 699db95
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 29 deletions.
Binary file added android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon.ico
Binary file not shown.
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CRYPTOPHUNKS</title>
<meta name="description" content="The official website for the CryptoPhunks project" />

<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
</head>

<body>
Expand Down
28 changes: 0 additions & 28 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import Twitter from './components/Twitter';
import Discord from './components/Discord';
import Medium from './components/Medium';

// import phunk from './assets/phunk0939.svg'
// import Video from './assets/phunks-intro-vid.mp4'
import NllLogo from './assets/nll-logo.svg'
import AuctionHouseLogo from './assets/auction-logo.svg'
import FlyWheelLogo from './assets/new-flywheel-logo.png'
Expand All @@ -22,38 +20,12 @@ import v3phunk from './assets/v3-phunk.png'

import Button from './components/Button/Button';

// const adjectives = [
// 'innovators',
// 'artists',
// 'developers',
// 'builders',
// 'visionaries',
// 'decentralized',
// 'phree',
// 'phunky'
// ]

const phunkIpfsBaseUrl = 'https://middlemarch.mypinata.cloud/ipfs/QmcvdPd7Jai74e595Mgx2u6D8QZZ1TGSFC2EQQNayQVJL8/';
const phunksToShow = 8;

function App() {
const [phunks, setPhunks] = useState<number[]>([])

// useEffect(() => {
// const interval = setInterval(() => {
// setAdjIndex(prev => {
// const next = (prev + 1)

// if (next === adjectives.length) {
// return 0;
// } else {
// return (prev + 1)
// }
// })
// }, 3000);
// return () => clearInterval(interval);
// }, []);

const year = new Date().getFullYear()

const getRandomInt = (max: number) => {
Expand Down

0 comments on commit 699db95

Please sign in to comment.