Skip to content
Merged
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
2 changes: 1 addition & 1 deletion components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Hero = () => {
<div className='pb-20 pt-36'>
<div className='flex justify-center relative my-20 z-10'>
<div className='max-w-[89vw] md:max-w-2xl lg:max-w-[60vw] flex flex-col items-center justify-center'>
<AnimatedShinyTextDemo text={"Hack with us at Aurora 2024"} link='https://aurora.elixircommunity.in/' />
{/* <AnimatedShinyTextDemo text={"Hack with us at Aurora 2024"} link='https://aurora.elixircommunity.in/' /> */}

<TextGenerateEffect
words='Transforming people into experienced developers'
Expand Down
4 changes: 2 additions & 2 deletions components/PageHeading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AnimatedShinyTextDemo } from "./AnimatedShinyBtn";
import { TextGenerateEffect } from "./ui/TextGenerateEffect";

const PageHeading = ({
smallHeading,
smallHeading,
longHeading,
link,
}: {
Expand All @@ -13,7 +13,7 @@ const PageHeading = ({
}) => {
return (
<div className='max-w-[89vw] md:max-w-2xl lg:max-w-[60vw] flex flex-col items-center justify-center'>
<AnimatedShinyTextDemo text={smallHeading} link={link} />
{/* <AnimatedShinyTextDemo text={smallHeading} link={link} /> */}
<TextGenerateEffect words={longHeading} className='text-center text-[20px] md:text-2xl ' />
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion layouts/EventsPageLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const EventsPageLayout = () => {
return (
<div className='pt-20 relative z-10 '>
<div className='flex flex-col items-center justify-center relative'>
<PageHeading smallHeading='Our Events' longHeading="THAT'S HOW WE ROLL!" />
<PageHeading longHeading="THAT'S HOW WE ROLL!" />
<div className='flex flex-wrap justify-center items-stretch gap-16 pt-10'>
{events?.map((event: Event) => (
<EventsCard
Expand Down
2 changes: 1 addition & 1 deletion layouts/MentorPageLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const MentorPageLayout = () => {
return (
<div className='pt-20 relative z-10'>
<div className='flex flex-col items-center justify-center'>
<PageHeading smallHeading='Connect with Mentors' longHeading='REACH OUT FOR GUIDANCE' />
<PageHeading longHeading='REACH OUT FOR GUIDANCE' />
{mentorData.length > 0 && <SearchBar setMentorData={setMentorData} mentors={mentorData} />}
<div className='flex flex-wrap items-center justify-center' style={{ gap: "80px" }}>
{mentorData.map((mentor, idx) => (
Expand Down
2 changes: 1 addition & 1 deletion layouts/NotesPageLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const NotesPageLayout = () => {
return (
<div className='pt-20 relative z-10'>
<div className='flex flex-col items-center justify-center'>
<PageHeading smallHeading='Take A Note(s)' longHeading='YOUR LAST NIGHT STUDY GUIDE' />
<PageHeading longHeading='YOUR LAST NIGHT STUDY GUIDE' />
<div className='flex items-center justify-center flex-wrap ' style={{ gap: "5rem", padding: "4rem 0" }}>
{NotesData.map((item, idx) => (
<div className='m-10' key={idx}>
Expand Down