Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hover removed #92

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions app/components/sponsors_components/Hero/SponsorsHero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@ const SponsorsHero = () => {
<div className={`${styles.hero} ${allura.className}`}>
<div className={styles.title}>
Sponsors
<span>Sponsors</span>
{/* <span>Sponsors</span>
<span>Sponsors</span>
<span>
{/* <Image id={styles.logo} src={logo} width={100} height={100} alt="Incand'24" /> */}
Incand&apos;24
</span>
</span> */}
</div>

<motion.div id={styles.cursor} animate="default"></motion.div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
transform: translate(-50%, -50%);
z-index: 10;
font-size: max(7vw, 3rem);
// color: #030743;
color: transparent;
color: #030743;
// color: transparent;
text-align: center;
// font-family: allura;
font-weight: 400;
Expand Down
12 changes: 6 additions & 6 deletions app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Hero from "./components/Hero/Hero";
import Navbar from "./components/Navbar/Navbar";

import ContactForm from "./components/ContactForm/ContactForm";
import Page from "./components/registration/Form";
// import Page from "./components/registration/Form";
// import LoaderAnimation from "./components/Loader/Loader";
// import animationData from "../public/loader.lottie";

Expand Down Expand Up @@ -77,19 +77,19 @@ const Home = () => {
},
{
name: "Gallery",
href: "/gallery",
href: "gallery",
},
{
name: "Events",
href: "/events",
href: "events",
},
{
name: "Sponsors",
href: "/sponsors",
href: "sponsors",
},
{
name: "Team",
href: "/team",
href: "team",
},
];

Expand All @@ -113,7 +113,7 @@ const Home = () => {
<About />
{/* <Sponsor /> */}
<ContactForm />
<Page />
{/* <Page /> */}
<Footer homePage />
<Social />
</main>
Expand Down
Loading