diff --git a/src/app/home/LogoCloud.tsx b/src/app/home/LogoCloud.tsx index f7c21623..f096ea9b 100644 --- a/src/app/home/LogoCloud.tsx +++ b/src/app/home/LogoCloud.tsx @@ -15,6 +15,7 @@ const LOGOS = [ { src: logoAmazonSrc, alt: "Amazon logo" }, ]; +// LogoCloud is disabled per issue: https://github.com/xitanggg/open-resume/issues/7 export const LogoCloud = () => (

diff --git a/src/app/home/Testimonials.tsx b/src/app/home/Testimonials.tsx index 8ef438bf..f141ca81 100644 --- a/src/app/home/Testimonials.tsx +++ b/src/app/home/Testimonials.tsx @@ -39,7 +39,7 @@ const LG_TESTIMONIALS_CLASSNAMES = [ const SM_TESTIMONIALS_CLASSNAMES = ["z-10", "opacity-0", "opacity-0"]; const ROTATION_INTERVAL_MS = 8 * 1000; // 8s -export const Testimonials = ({ children }: { children: React.ReactNode }) => { +export const Testimonials = ({ children }: { children?: React.ReactNode }) => { const [testimonialsClassNames, setTestimonialsClassNames] = useState( LG_TESTIMONIALS_CLASSNAMES ); diff --git a/src/app/page.tsx b/src/app/page.tsx index 907375cd..0c6c512f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,6 @@ import { Hero } from "home/Hero"; import { Steps } from "home/Steps"; import { Features } from "home/Features"; import { Testimonials } from "home/Testimonials"; -import { LogoCloud } from "home/LogoCloud"; import { QuestionsAndAnswers } from "home/QuestionsAndAnswers"; export default function Home() { @@ -11,9 +10,7 @@ export default function Home() { - - - + );