diff --git a/src/components/Soon.astro b/src/components/Soon.astro
deleted file mode 100644
index 1f50126..0000000
--- a/src/components/Soon.astro
+++ /dev/null
@@ -1,98 +0,0 @@
----
-import {Image} from 'astro:assets';
-import cw from '../../public/SoonEvents/cw.jpeg'
-import w1 from '../../public/SoonEvents/weekend1.jpeg'
-import w2 from '../../public/SoonEvents/weekend2.jpeg'
-import w3 from '../../public/SoonEvents/weekend3.jpeg'
-import w4 from '../../public/SoonEvents/weekend4.jpeg'
-import w5 from '../../public/SoonEvents/weekend5.jpeg'
-import w6 from '../../public/SoonEvents/weekend6.jpeg'
-import w7 from '../../public/SoonEvents/weekend7.jpeg'
----
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/Soon.tsx b/src/components/Soon.tsx
new file mode 100644
index 0000000..17f9e98
--- /dev/null
+++ b/src/components/Soon.tsx
@@ -0,0 +1,75 @@
+import { Swiper, SwiperSlide } from "swiper/react";
+import "swiper/css";
+import "swiper/css/effect-coverflow";
+import "swiper/css/pagination";
+import "./cssSoon/soon.css";
+import { EffectCoverflow, Pagination } from "swiper/modules";
+import cw from "../../public/SoonEvents/cw.jpeg";
+import w1 from "../../public/SoonEvents/weekend1.jpeg";
+import w2 from "../../public/SoonEvents/weekend2.jpeg";
+import w3 from "../../public/SoonEvents/weekend3.jpeg";
+import w4 from "../../public/SoonEvents/weekend4.jpeg";
+import w5 from "../../public/SoonEvents/weekend5.jpeg";
+import w6 from "../../public/SoonEvents/weekend6.jpeg";
+import w7 from "../../public/SoonEvents/weekend7.jpeg";
+
+type Card = {
+ src: string;
+};
+
+const card: Card[] = [
+ {
+ src: cw.src,
+ },
+ {
+ src: w1.src,
+ },
+ {
+ src: w2.src,
+ },
+ {
+ src: w3.src,
+ },
+ {
+ src: w4.src,
+ },
+ {
+ src: w5.src,
+ },
+ {
+ src: w6.src,
+ },
+ {
+ src: w7.src,
+ },
+];
+
+export default function App() {
+ return (
+ <>
+ {" "}
+
+ {card.map((Card, index) => (
+
+
+
+ ))}
+
+ >
+ );
+}
diff --git a/src/components/cssSoon/soon.css b/src/components/cssSoon/soon.css
new file mode 100644
index 0000000..417890f
--- /dev/null
+++ b/src/components/cssSoon/soon.css
@@ -0,0 +1,18 @@
+.swiper.mySwiper1 {
+ width: 100%;
+ padding-top: 50px;
+ padding-bottom: 50px;
+ height: 600px;
+}
+
+.swiper.mySwiper1 .swiper-slide {
+ background-position: center;
+ background-size: cover;
+ width: 500px;
+ height: 500px;
+}
+
+.swiper.mySwiper1 .swiper-slide img {
+ display: block;
+ width: 100%;
+}
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 21913fe..f311a28 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -2,7 +2,7 @@
import Layout from "../layouts/Layout.astro";
import Events from "@components/Events";
import Unete from "../components/Unete.astro";
-import Soon from "../components/Soon.astro";
+import Soon from "../components/Soon";
import "../components/cssInicio/variables.css";
import "../components/cssInicio/fondo.css";
import "../components/cssInicio/navInicio.css";
@@ -17,9 +17,9 @@ import Titulos from "../components/Titulos.astro";
-
+
-
+
\ No newline at end of file