Skip to content

Commit 15e349a

Browse files
authored
Merge pull request #23 from ElixirTechCommunity/dev-fork-sync
Dev fork sync
2 parents f9619c1 + 81ca139 commit 15e349a

File tree

6 files changed

+22
-3
lines changed

6 files changed

+22
-3
lines changed

components/ChapterSection.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ import { Chapters } from "@/constants/constants";
44
import { PinContainer } from "./ui/Pin";
55
import Image from "next/image";
66
import Link from "next/link";
7+
import Link from "next/link";
78

89
const ChapterSection = () => {
910
return (
11+
<div className="py-20">
12+
<h1 className="heading">
13+
Our Core <span className="text-purple">Societies</span>
1014
<div className="py-20">
1115
<h1 className="heading">
1216
Our Core <span className="text-purple">Societies</span>

components/Footer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { FaLocationArrow } from "react-icons/fa6";
22
import { socialMedia } from "@/constants/constants";
33
import MagicButton from "./MagicButton";
44
import Image from "next/image";
5+
import Image from "next/image";
56

67
const Footer = () => {
78
return (

components/PageHeading.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ const PageHeading = ({
1515
);
1616
};
1717

18-
export default memo(PageHeading);
18+
export default memo(PageHeading);

components/Testimonials.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { InfiniteMovingCards } from "./ui/InfiniteCards";
77
import MagicButton from "./MagicButton";
88
import { FaLocationArrow } from "react-icons/fa6";
99
import Image from "next/image";
10+
import Image from "next/image";
1011

1112
const Testimonials = () => {
1213
return (

components/magicui/animated-shiny-text.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ interface AnimatedShinyTextProps {
88
link?: string;
99
}
1010

11-
const AnimatedShinyText: FC<AnimatedShinyTextProps> = ({ children, className, shimmerWidth = 100, link = "#" }) => {
11+
const AnimatedShinyText: FC<AnimatedShinyTextProps> = ({
12+
children,
13+
className,
14+
shimmerWidth = 100,
15+
link = "#",
16+
}) => {
1217
return (
1318
<a
1419
style={
@@ -25,7 +30,7 @@ const AnimatedShinyText: FC<AnimatedShinyTextProps> = ({ children, className, sh
2530
// Shimmer gradient
2631
"bg-gradient-to-r from-transparent via-black/80 via-50% to-transparent dark:via-white/80",
2732

28-
className,
33+
className
2934
)}
3035
href={link}
3136
>

layouts/TestimonialsPageLayout.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { testimonials } from "@/constants/constants";
33
import { cn } from "@/lib/utils";
44
import styles from "./layouts.module.css";
55
import Image from "next/image";
6+
import Image from "next/image";
67
const TestimonialsPageLayout = () => {
78
return (
89
<div className="pt-20 relative z-10">
@@ -16,6 +17,13 @@ const TestimonialsPageLayout = () => {
1617
style={{ gap: "3rem", padding: "4rem 0" }}
1718
>
1819
{testimonials.map((item, idx) => (
20+
<li
21+
className={cn(
22+
"rounded-2xl border border-slate-800 p-5 md:p-16 ",
23+
styles.testimonials
24+
)}
25+
key={idx}
26+
>
1927
<li
2028
className={cn(
2129
"rounded-2xl border border-slate-800 p-5 md:p-16 ",

0 commit comments

Comments
 (0)