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
4 changes: 4 additions & 0 deletions components/ChapterSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ import { Chapters } from "@/constants/constants";
import { PinContainer } from "./ui/Pin";
import Image from "next/image";
import Link from "next/link";
import Link from "next/link";

const ChapterSection = () => {
return (
<div className="py-20">
<h1 className="heading">
Our Core <span className="text-purple">Societies</span>
<div className="py-20">
<h1 className="heading">
Our Core <span className="text-purple">Societies</span>
Expand Down
1 change: 1 addition & 0 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { FaLocationArrow } from "react-icons/fa6";
import { socialMedia } from "@/constants/constants";
import MagicButton from "./MagicButton";
import Image from "next/image";
import Image from "next/image";

const Footer = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion components/PageHeading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ const PageHeading = ({
);
};

export default memo(PageHeading);
export default memo(PageHeading);
1 change: 1 addition & 0 deletions components/Testimonials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { InfiniteMovingCards } from "./ui/InfiniteCards";
import MagicButton from "./MagicButton";
import { FaLocationArrow } from "react-icons/fa6";
import Image from "next/image";
import Image from "next/image";

const Testimonials = () => {
return (
Expand Down
9 changes: 7 additions & 2 deletions components/magicui/animated-shiny-text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ interface AnimatedShinyTextProps {
link?: string;
}

const AnimatedShinyText: FC<AnimatedShinyTextProps> = ({ children, className, shimmerWidth = 100, link = "#" }) => {
const AnimatedShinyText: FC<AnimatedShinyTextProps> = ({
children,
className,
shimmerWidth = 100,
link = "#",
}) => {
return (
<a
style={
Expand All @@ -25,7 +30,7 @@ const AnimatedShinyText: FC<AnimatedShinyTextProps> = ({ children, className, sh
// Shimmer gradient
"bg-gradient-to-r from-transparent via-black/80 via-50% to-transparent dark:via-white/80",

className,
className
)}
href={link}
>
Expand Down
8 changes: 8 additions & 0 deletions layouts/TestimonialsPageLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { testimonials } from "@/constants/constants";
import { cn } from "@/lib/utils";
import styles from "./layouts.module.css";
import Image from "next/image";
import Image from "next/image";
const TestimonialsPageLayout = () => {
return (
<div className="pt-20 relative z-10">
Expand All @@ -16,6 +17,13 @@ const TestimonialsPageLayout = () => {
style={{ gap: "3rem", padding: "4rem 0" }}
>
{testimonials.map((item, idx) => (
<li
className={cn(
"rounded-2xl border border-slate-800 p-5 md:p-16 ",
styles.testimonials
)}
key={idx}
>
<li
className={cn(
"rounded-2xl border border-slate-800 p-5 md:p-16 ",
Expand Down