Skip to content

Commit

Permalink
Merge pull request #16 from SweetmanTech/test
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
sweetmantech authored Dec 8, 2023
2 parents 95165d9 + 48b722f commit dca74b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/LandingCard/LandingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const LandingCard = ({ title, img = "/images/Landing/web3.jpg", href }) => (
objectPosition="center"
placeholder="blur"
blurDataURL={img}
unoptimized
/>
</div>
<div className="absolute inset-0 bg-black opacity-75" />
Expand Down
3 changes: 3 additions & 0 deletions components/Pages/MusicPage/MusicSlider/MusicSlider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const MusicSlider = () => (
slidesPerView: 2,
},
},
mousewheel: {
sensitivity: 1,
},
}}
>
{musics.map((music, index) => (
Expand Down
3 changes: 3 additions & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ import { ToastContainer } from "react-toastify"
import { SessionProvider } from "next-auth/react"
import * as React from "react"
import { Analytics } from "@vercel/analytics/react"
import Swiper, { Mousewheel } from "swiper"
import { ThemeProvider } from "../providers/ThemeProvider"
import { TITLE } from "../lib/consts"

Swiper.use([Mousewheel])

const isMainnet = !process.env.NEXT_PUBLIC_TESTNET
const myChains = [isMainnet ? base : baseGoerli]
const { chains, publicClient, webSocketPublicClient } = configureChains(myChains, [
Expand Down

0 comments on commit dca74b9

Please sign in to comment.