diff --git a/web/apps/photos/src/pages/index.tsx b/web/apps/photos/src/pages/index.tsx index b23d205cd..733dc070a 100644 --- a/web/apps/photos/src/pages/index.tsx +++ b/web/apps/photos/src/pages/index.tsx @@ -273,13 +273,41 @@ const PRSExample: React.FC = () => { > - I am the first Slide. + + + + + {t("HERO_SLIDE_1")} - I am the second Slide. + + + + + + {t("HERO_SLIDE_2")} + - I am the third Slide. + + + + + + {t("HERO_SLIDE_3")} + @@ -293,50 +321,9 @@ const CustomSlider = styled(Slider)` const CustomDotGroup = styled(DotGroup)` border: 1px solid tomato; - margin-block-start: 1rem; `; const SlideContents = styled("div")` display: flex; flex-direction: column; `; - -export const Slideshow2: React.FC = () => { - return ( - - - - - - - {t("HERO_SLIDE_1")} - - - - - - - {t("HERO_SLIDE_2")} - - - - - - - {t("HERO_SLIDE_3")} - - - ); -};