Skip to content

Commit 31bf864

Browse files
Fix invalid export in Testimonial page and replace img tags
1 parent 2af667a commit 31bf864

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/Landing/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Footer from "../Footer/page";
44
import Header from "../Header/page";
55
import NavBar from "../NavBar/page";
66
import Overview from "../Overview/page";
7-
import { Testimonial } from "../Testimonial/page";
7+
import Testimonial from "../Testimonial/page";
88
import UpcomingEvent from "../UpcomingEvent/page";
99

1010
export default function Landing() {

app/Testimonial/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { Testimonials } from "@/components/ui/testimonials";
22

3-
function Testimonial() {
3+
const Testimonial = () => {
44
return (
55
<div className="block">
66
<Testimonials />
77
</div>
88
);
9-
}
9+
};
1010

11-
export { Testimonial };
11+
export default Testimonial;

0 commit comments

Comments
 (0)