diff --git a/src/app/compra-venta-autos/page.tsx b/src/app/compra-venta-autos/page.tsx
new file mode 100644
index 0000000..8db460a
--- /dev/null
+++ b/src/app/compra-venta-autos/page.tsx
@@ -0,0 +1,67 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import HeroLogo from '@/components/sections/hero/HeroLogo';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+
+export default function CompraVentaPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 6d2961b..f0d0da1 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,22 +30,11 @@ export default function LandingPage() {
@@ -53,107 +42,33 @@ export default function LandingPage() {
@@ -163,47 +78,13 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
- useInvertedBackground={false}
products={[
- {
- id: "p1",
- name: "Sedán Premium 2023",
- price: "$350,000",
- imageSrc: "http://img.b2bpic.net/free-photo/exterior-modern-white-luxury-car_181624-23559.jpg",
- },
- {
- id: "p2",
- name: "SUV Familiar 2022",
- price: "$420,000",
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193565.jpg",
- },
- {
- id: "p3",
- name: "Compacto Urbano",
- price: "$280,000",
- imageSrc: "http://img.b2bpic.net/free-photo/car-handle-close-up-photo_1303-29462.jpg",
- },
- {
- id: "p4",
- name: "Deportivo Elegante",
- price: "$580,000",
- imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-white-car_23-2148320260.jpg",
- },
- {
- id: "p5",
- name: "Hatchback Híbrido",
- price: "$310,000",
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-ev-plug-connected-electric-car_482257-130219.jpg",
- },
- {
- id: "p6",
- name: "Pickup 4x4",
- price: "$650,000",
- imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-laying-car_23-2149004948.jpg",
- },
+ { id: "p1", name: "Sedán Premium", price: "$350,000", imageSrc: "http://img.b2bpic.net/free-photo/exterior-modern-white-luxury-car_181624-23559.jpg" },
+ { id: "p2", name: "SUV Familiar", price: "$420,000", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193565.jpg" },
+ { id: "p3", name: "Compacto", price: "$280,000", imageSrc: "http://img.b2bpic.net/free-photo/car-handle-close-up-photo_1303-29462.jpg" },
]}
- title="Inventario de Autos"
- description="Encuentra el modelo ideal para ti en nuestro catálogo actualizado diariamente."
+ title="Inventario"
+ description="Encuentra el modelo ideal."
/>
@@ -211,133 +92,41 @@ export default function LandingPage() {