Create Sparkles Folder

This commit is contained in:
Sam Poder 2023-08-12 02:31:46 -04:00
parent f3f91d9003
commit 43191513d3
4 changed files with 6 additions and 7 deletions

View file

@ -2,7 +2,7 @@ import { Box, Badge, Grid, Heading } from 'theme-ui'
import { Link, Button, Card } from 'theme-ui'
import { Slide } from 'react-reveal'
import Zoom from 'react-reveal/Zoom'
import MSparkles from './money'
import MSparkles from '../../sparkles/money'
import Image from 'next/image'
/** @jsxImportSource theme-ui */

View file

@ -5,9 +5,8 @@ import { keyframes } from '@emotion/react'
import { range, sample, random } from 'lodash'
import { Text } from 'theme-ui'
import theme from '@hackclub/theme'
import useRandomInterval from '../lib/use-random-interval'
import usePrefersReducedMotion from '../lib/use-prefers-reduced-motion'
import useRandomInterval from '../../lib/use-random-interval'
import usePrefersReducedMotion from '../../lib/use-prefers-reduced-motion'
const generateSparkle = color => {
const sparkle = {

View file

@ -5,8 +5,8 @@ import { keyframes } from '@emotion/react'
import { range, sample, random } from 'lodash'
import { Text } from 'theme-ui'
import theme from '@hackclub/theme'
import useRandomInterval from '../../../lib/use-random-interval'
import usePrefersReducedMotion from '../../../lib/use-prefers-reduced-motion'
import useRandomInterval from '../../lib/use-random-interval'
import usePrefersReducedMotion from '../../lib/use-prefers-reduced-motion'
const generateSparkle = color => {
const sparkle = {

View file

@ -4,7 +4,7 @@ import Head from 'next/head'
import ForceTheme from '../../components/force-theme'
import Nav from '../../components/nav'
import Footer from '../../components/footer'
import MSparkles from '../../components/hackathons/grant/money'
import MSparkles from '../../components/sparkles/money'
import NextLink from 'next/link'
import { Link, Text, Button, Card } from 'theme-ui'
import Icon from '@hackclub/icons'