We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2af667a commit 31bf864Copy full SHA for 31bf864
app/Landing/page.tsx
@@ -4,7 +4,7 @@ import Footer from "../Footer/page";
4
import Header from "../Header/page";
5
import NavBar from "../NavBar/page";
6
import Overview from "../Overview/page";
7
-import { Testimonial } from "../Testimonial/page";
+import Testimonial from "../Testimonial/page";
8
import UpcomingEvent from "../UpcomingEvent/page";
9
10
export default function Landing() {
app/Testimonial/page.tsx
@@ -1,11 +1,11 @@
1
import { Testimonials } from "@/components/ui/testimonials";
2
3
-function Testimonial() {
+const Testimonial = () => {
return (
<div className="block">
<Testimonials />
</div>
);
-}
+};
11
-export { Testimonial };
+export default Testimonial;
0 commit comments