diff --git a/src/App.tsx b/src/App.tsx
index 3338309..3d1af9a 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,12 +3,14 @@ import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import ServiciosPage from "@/pages/ServiciosPage";
+import SpecialEventsPage from "@/pages/SpecialEventsPage";
export default function App() {
return (
}>
} />
} />
+ } />
);
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 305a18e..f4c0be9 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -36,6 +36,8 @@ export default function Layout() {
"href": "#faq"
},
{ name: "Servicios", href: "/servicios" },
+ { name: "Special Events", href: "/special-events" },
+
];
diff --git a/src/pages/SpecialEventsPage.tsx b/src/pages/SpecialEventsPage.tsx
new file mode 100644
index 0000000..6d7d308
--- /dev/null
+++ b/src/pages/SpecialEventsPage.tsx
@@ -0,0 +1,19 @@
+import Button from "@/components/ui/Button";
+import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot";
+import TextAnimation from "@/components/ui/TextAnimation";
+import ImageOrVideo from "@/components/ui/ImageOrVideo";
+import ScrollReveal from "@/components/ui/ScrollReveal";
+import GridOrCarousel from "@/components/ui/GridOrCarousel";
+
+export default function SpecialEventsPage() {
+ return (
+ <>
+
+
Bodas de Ensueño
Capturamos la magia de tu gran día con ampliaciones elegantes protegidas en resina.
+
Cumpleaños y Fiestas
Guarda la alegría de cada celebración con colores vibrantes y marcos duraderos.
+
Graduaciones
Celebra tus logros con cuadros en resina de alta calidad en varios tamaños.
+
Video en USB
Revive cada instante con nuestros videos de alta definición entregados en formato USB.
+
+ >
+ );
+}
\ No newline at end of file
diff --git a/src/routes.ts b/src/routes.ts
index 670171f..0e8a2f0 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -7,4 +7,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/servicios', label: 'Servicios', pageFile: 'ServiciosPage' },
+ { path: '/special-events', label: 'Special Events', pageFile: 'SpecialEventsPage' },
];